gpt4 book ai didi

javascript - 如何从数组中解构键(ES6)

转载 作者:搜寻专家 更新时间:2023-11-01 05:09:20 24 4
gpt4 key购买 nike

我们只是根据直觉编写了这段代码,而且它起作用了。我很确定这是可以接受的。我只想确定:

const state = { inProgress: true }
const actions = 'COMPLETE_RICE'
const change = { inProgress: false, rice: 'cooked' }

// Is this destructuring OK?
const {
0: newState,
1: newActions,
2: newChange,
} = [state, actions, change]

console.log('New State:', newState)
console.log('New Actions:', newActions)
console.log('New Change:', newChange)

有更好的方法吗?

有任何疑虑或违规行为吗?

我找不到这方面的任何例子,只是试了一下,因为我记得:

['one', 'two', 'three'] 可以表示为一个对象:

{
0: 'one',
1: 'two',
2: 'three'
}

这里没有完全列出: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Destructuring_assignment

但是,它有效。

最佳答案

您可以为 destructuring assignment 使用数组.那里不需要索引,因为数组给出了顺序。

const state = { inProgress: true }
const actions = 'COMPLETE_RICE'
const change = { inProgress: false, rice: 'cooked' }

// Is this destructuring OK?
const [newState, newActions, newChange] = [state, actions, change];

console.log('New State:', newState)
console.log('New Actions:', newActions)
console.log('New Change:', newChange)

关于javascript - 如何从数组中解构键(ES6),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47408730/

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