利用map返回新数组的特性处理
function square(arr) {
    return arr.map(el => Math.pow(el,2))
}