gpt4 book ai didi

javascript - 如何在 JavaScript ES6 中使用数组解构并分配给对象属性

转载 作者:行者123 更新时间:2023-11-28 16:46:58 24 4
gpt4 key购买 nike

这段代码:

const eat = { when: 'now' }
const fruits = ['apple', 'orange']

eat.fruit = fruits[1] // orange

我可以像这样使用数组解构:

const [, selectedFruit] = fruits

eat.fruit = selectedFruit

但是我可以用它来做一句俏皮话吗?

最佳答案

你能用这个吗

[, eat.fruit] = fruits // remove const
console.log(eat)

关于javascript - 如何在 JavaScript ES6 中使用数组解构并分配给对象属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60438437/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com