const nums = [1, 2, 3, 4, 5];

1.assign

console.log(Object.assign({}, nums));
Object.assign() 方法用于将所有可枚举属性的值从一个或多个源对象分配到目标对象。它将返回目标对象。

2.JS把数组转化成新的对象map

var arry=[]
let obj = arry.map(x => x.color);

3.filter

array.filter(function(currentValue,index,arr), thisValue)

使用map和filter一定要区分清楚,map只是把原有的数组转成新的格式的数组,数组长度不变,而filter是起到过滤作用,可以过滤数组中有些不符合条件的对象,数组长度会发生改变。