js将数组添加到空对象里
时间: 2023-11-26 18:04:30 浏览: 73
js实现以最简单的方式将数组元素添加到对象中的方法
可以使用for循环或forEach方法来遍历数组,然后将数组的每个元素添加到空对象中。代码示例如下:
```javascript
const arr = ['apple', 'banana', 'orange'];
const obj = {};
// 使用for循环
for (let i = 0; i < arr.length; i++) {
obj[arr[i]] = i;
}
// 使用forEach方法
arr.forEach((item, index) => {
obj[item] = index;
});
console.log(obj); // 输出: { apple: 0, banana: 1, orange: 2 }
```
在上面的示例中,我们将数组`arr`的每个元素添加到空对象`obj`中,并使用元素的值作为键,使用元素的索引作为值。
阅读全文