题解 | #求二次方#

求二次方

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

map() 方法返回一个新数组,数组中的元素为原始数组元素调用函数处理后的值。

Math.pow()

Math.pow(x, y) 的返回值是 x 的 y 次幂:

实例
Math.pow(8, 2); // 返回 64

function square(arr) {
return arr.map(el=>Math.pow(el,2))  
}
全部评论

相关推荐

点赞 评论 收藏
分享
1 1 评论
分享
牛客网
牛客企业服务