我有这个数组:
const array = [ 'one', 'two', 'three' ]
我希望将此数组转换为没有索引的对象。这怎么可能?
答案 0 :(得分:1)
尝试使用Array#forEach()
。使用foreach
对数组进行迭代,并在key and value
对象中附加res
const array = [ 'one', 'two', 'three' ]
var res={}
array.forEach(function(a){
res[a]=a
})
console.log(res)