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))  
}