gpt4 book ai didi

javascript - 用新值更新现有的 JS 关联数组

转载 作者:行者123 更新时间:2023-11-30 11:27:33 27 4
gpt4 key购买 nike

我想在下面的数组中搜索 3.30pm 并在 JS 中更新数组索引的 type

0: {time: "2:00pm",type:16}
1: {time: "3:30pm",type:30}
2: {time: "5:00pm",type:90}

任何人请提出正确的修复方法。

我试过了..

 function in_array(array, id) {
console.log(array);
for(var i=0;i<array.length;i++) {
return (array[i][0].time === id)
}
return false;
}
$result = in_array(timesShow, $time);

但是它的返回错误像

movies:620 Uncaught TypeError: Cannot read property 'time' of undefined

最佳答案

试试这个...

for(var i=0;i<array.length;i++) {
if(array[i].time === id)
{
array[i].type='whatever you want to change';
}
}

关于javascript - 用新值更新现有的 JS 关联数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47407466/

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