list.concat(list2)
list.splice(index,number)
list.map(v=>{return v.key})
list.filter(v=>{return v.key==='1'})
list.forEach((item)=>{})
list.find((item)=>{return item.key === 1})
list.some((item)=>{return item.key === 1})
list.includes((item)=>{return item.key === 1})
Object.assign(map1,map2)
Array.from(str,function(n){},{})
第一个表示将被转换的可迭代对象(如果只有一个参数就是把形参转变成数组)
第二个是回调函数,将对每个数组元素应用该回调函数,然后返回新的值到新数组,
第三个是回调函数内this的指向。