A基础题 示例1 输入 [1, 2, 3, 4] 输出 [1, 4, 9, 16] function square(arr) { return arr.map(item =>{ return item*item }) }