题解 | #求二次方#

求二次方

https://www.nowcoder.com/practice/b7a8647e33d84f5c88acdd7c81a85fdf

function square(arr) {
            //for
            //let res=arr;
            //for(let i=0;i<arr.length;i++){
            //    res[i]=Math.pow(arr[i],2)
            //}

            //for of
            //let res=[]
            //for(let num of arr){
            //    res.push(Math.pow(num,2))
            //}
            //return res;

            //forEach
            //let res=[]
            //arr.forEach(num=>{
            //    res.push(Math.pow(num,2))
            //})
            //return res;

            //map最简洁
            return arr.map(num=>Math.pow(num,2))

全部评论

相关推荐

11-08 13:58
门头沟学院 Java
程序员小白条:竟然是蓝桥杯人才doge,还要花钱申领的offer,这么好的公司哪里去找
点赞 评论 收藏
分享
11-08 17:36
诺瓦科技_HR
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务