gpt4 book ai didi

javascript - 使用循环更新 json 属性值

转载 作者:行者123 更新时间:2023-11-30 12:01:20 25 4
gpt4 key购买 nike

[{id:1,price:10},{id:2,price:20}]

如何将 ID 为 2 的对象数组的价格更新为 200?

var obj = [{id:1,price:10},{id:2,price:20}];
for(var i=0;i<obj.length;i++){
if(obj[i].id == 2){
//what to do here?
}
}

我可以继续推进和拼接等,但挑战是保持位置。

最佳答案

你可以这样做:

obj[i].price = 200;
break;

中断将阻止您继续遍历所有项目(因为您找到了要搜索的项目)。

关于javascript - 使用循环更新 json 属性值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36568041/

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