摘要:
##1. 累加求和 const array1 = [1,3,5,7,9] // 数据累加 function sum(...numbers){ return numbers.reduce((preValue,currentValue)=>{ return preValue + currentValue 阅读全文
摘要:
【文档链接】:展开语法 ##1. 展开数组 const array1 = [1,3,5,7,9] const array2 = [0,2,4,6,8] console.log(...array1) // 1 3 5 7 9 console.log(...array1) // 0 2 4 6 8 ## 阅读全文