我正在遍历事务列表并将值推送到数组。
autoArry.push({
id: countTxns,
txnID: txnID,
account: buyersAccount
});
doSomething();
function doSomething(){
var newData = '1234,4567,5678,8900';
//Loop Here
}
我需要用我的 newData 遍历 autoArry。当我的 newData 与
数组中的 txnID 匹配时,我需要访问与之对应的帐号。
在数组中查找值然后访问与该块相关的所有值的最佳方法是什么?