gpt4 book ai didi

javascript - 是否可以在实际循环周期之外使用 'for' 循环内的值?

转载 作者:行者123 更新时间:2023-12-03 06:38:52 25 4
gpt4 key购买 nike

我有一个 for 循环,它循环遍历我的数组并将满足特定条件的每个值打印到控制台。我想获取这些值并将它们插入循环外的变量中。这可能吗?

for (var i = 0; i < myArray.length; i++) {
if (myArray[i].catType === 'I') {
console.log(myArray[i].location);
}
...
}

我想将从 for 循环输出的所有内容插入位于此 for 循环之外的工具提示对象中。

var header = "<thead>" +
"<tr>" +
"<td class='legend-color-guide'><div style='background-color: " + series.color + ";'></div></td>" +
"<td class='key'><strong>" + <INSERT HERE> + "</strong></td>" +
"</tr>" +
"</thead>";

如何做到这一点?

最佳答案

创建一个数组,每次满足条件时添加新值。

var arr = [];// initialize array

for (var i = 0; i < myArray.length; i++) {
if (myArray[i].catType === 'I') {
console.log(myArray[i].location);

arr.push("Add Whatever Here");// append new value to the array
}
}

关于javascript - 是否可以在实际循环周期之外使用 'for' 循环内的值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38061935/

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