更改JavaScript中嵌套对象键的值
为此,请使用点号(。)以及方括号([])。
示例
var details = {
"customer": {
"customerDetails": {
"otherDetails": [
{
"customerDetails": {
"isMarried": false
},
},
{
"customerDetails": {
"isMarried": false
},
},
{
"customerDetails": {
"isMarried": false
}
}
]
}
}
}
console.log("All values are set to true=");
for (var index = 0; index < details.customer.customerDetails['otherDetails'].length; index++) {
details.customer.customerDetails['otherDetails'][index].customerDetails['isMarr
ied'] = true;
}
for (var index = 0; index < details.customer.customerDetails['otherDetails'].length; index++) {
console.log("isMarried:"+details.customer.customerDetails['otherDetails'][index
].customerDetails['isMarried']);
}要运行以上程序,您需要使用以下命令-
node fileName.js.
在这里,我的文件名为demo186.js。
输出结果
这将产生以下输出-
PS C:\Users\Amit\javascript-code> node demo186.js All values are set to true= isMarried:true isMarried:true isMarried:true
热门推荐
10 表达朋友的祝福语简短
11 天气转凉祝福语简短
12 节日祝福语幽默简短的
13 端午发给客户祝福语简短
14 女朋友祝福语简短新年
15 小红书平安祝福语简短
16 捐款人留言祝福语简短
17 顾客简短祝福语大全集
18 佛教生日祝福语简短大全