驊驊龔頾
驊驊龔頾
题解
为数组 arr 中的每个元素求二次方。不要直接修改数组 arr,结果返回新的数组
全部文章
题解
归档
标签
去牛客网
登录
/
注册
为数组 arr 中的每个元素求二次方。不要直接修改数组 arr,结果返回新的数组
1125 浏览
1 回复
2021-03-05
驊驊龔頾
+关注
求二次方
http://www.nowcoder.com/practice/b7a8647e33d84f5c88acdd7c81a85fdf
利用map返回新数组的特性处理
function square(arr) { return arr.map(el => Math.pow(el,2)) }
举报
收藏
赞 17
评论加载中...