题解 | #求二次方#
求二次方
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)) }