gpt4 book ai didi

javascript - 使用 jquery 将数字传递给 for 循环函数

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

我想知道如何将数字传递给我为循环创建的函数。例如,我有一个循环,它在运行时只是将一个值加 1。我将如何传递我希望循环在函数中运行的次数?就像这样:

var i = 0;
function blahBlah (i ?){
for (i=0,i>10(this is what I want to pass to the function),i++){
i++;
}

Then call the function:

blahBlah(number of times I want it to run);

最佳答案

我不确定我是否理解这个问题,但是怎么样

function blahBlah(n) {
for(var i=0; i < n; i++) {
//do something
}
}

关于javascript - 使用 jquery 将数字传递给 for 循环函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11596351/

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