gpt4 book ai didi

javascript - 解构为两个独立的变量

转载 作者:行者123 更新时间:2023-11-29 16:30:51 25 4
gpt4 key购买 nike

有没有一种快速的方法来解构一个对象,以便将它存储到两个不同的组中?例如:

const obj = {a: 1, b: 2, c:3, d: 4, e: 5};
const {a, b} = obj;
// store the rest of the properties that weren't destructed above
const {otherStuff} = obj;

一些注意事项:

  1. 我知道我需要从对象获得的第一个属性是什么。
  2. 我不知道还有哪些属性没有被解构。

最佳答案

const {a, b, ...otherStuff} = obj;

关于javascript - 解构为两个独立的变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58014955/

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