gpt4 book ai didi

javascript - 在 Javascript 数组中插入唯一值

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

我有一个数组。该函数从后端服务不断调用。我想将唯一值推送到一个对象中。我的代码是

currentValue =  pointerToVisconCtrl.MappedVariableObj.value;
var seconds = new Date().getSeconds();
seconds = parseInt(seconds);
graphDataObject.push({timestamp : seconds, value : currentValue});

请指导我在 graphDataObject 中仅输入唯一的 currentValue 和秒值

最佳答案

var finalArr = graphDataObject.filter(function(d){
if(d.value == currentValue){ return d;}
});

if(finalArr.length == 0){
graphDataObject.push({timestamp : seconds, value : currentValue});
}

关于javascript - 在 Javascript 数组中插入唯一值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47627425/

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