gpt4 book ai didi

javascript - 更新 javascript 对象属性?

转载 作者:行者123 更新时间:2023-12-03 02:33:23 25 4
gpt4 key购买 nike

我的结构如下:

skillet.person = {
name: {
first: '',
last: ''
},
age: {
current: ''
},
birthday: {
day: '',
month: '',
year: ''
}
}

我想知道如何更新这些值?即我认为以下是正确的

skillet.person.name.push({ first: 'blah', last: 'ha'});

但这是错误的?我该如何解决这个问题?

最佳答案

使用 ES7+ 语法和函数式方法:

const new_obj = { ...obj, name: { first: 'blah', last: 'ha'} }

关于javascript - 更新 javascript 对象属性?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9454863/

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