Вопрос

Как я могу создать цикл в JavaScript?

Это было полезно?

Решение

Для петель

for (i = startValue; i <= endValue; i++) {
    // Before the loop: i is set to startValue
    // After each iteration of the loop: i++ is executed
    // The loop continues as long as i <= endValue is true
}

For...в циклах

for (i in things) {
    // If things is an array, i will usually contain the array keys *not advised*
    // If things is an object, i will contain the member names
    // Either way, access values using: things[i]
}

Плохая практика использовать for...in циклы для перебора массивов.Это противоречит ЭКМА 262 стандартен и может вызвать проблемы, когда к объекту Array добавляются нестандартные атрибуты или методы, например.к Опытный образец. (Благодаря Чейз Зайберт за то, что указали на это в комментариях)

Пока циклы

while (myCondition) {
    // The loop will continue until myCondition is false
}

Другие советы

Вот пример цикла for:

У нас есть массив предметов узлы.

for(var i = 0; i< nodes.length; i++){
    var node = nodes[i];
    alert(node);
}

Вы также можете рассмотреть возможность оптимизации скорости цикла;видеть http://www.robertnyman.com/2008/04/11/javascript-loop- Performance/

В сторону образуют встроенные петли (while() ..., do ... while(), for() ...), существует структура самовызывающей функции, также известная как рекурсия для создания цикла без трех встроенных структур цикла.

Учтите следующее:

// set the initial value
var loopCounter = 3;

// the body of the loop
function loop() {

    // this is only to show something, done in the loop
    document.write(loopCounter + '<br>');

    // decrease the loopCounter, to prevent running forever
    loopCounter--;

    // test loopCounter and if truthy call loop() again 
    loopCounter && loop();
}

// invoke the loop
loop();

Излишне говорить, что эта структура часто используется в сочетании с возвращаемым значением, поэтому это небольшой пример того, как обращаться со значением, которое доступно не в первый раз, а в конце рекурсии:

function f(n) {
    // return values for 3 to 1
    //       n   -n  ~-n   !~-n   +!~-n   return
    // conv int neg bitnot  not  number 
    //       3   -3   2    false    0    3 * f(2)
    //       2   -2   1    false    0    2 * f(1)
    //       1   -1   0     true    1        1
    // so it takes a positive integer and do some conversion like changed sign, apply
    // bitwise not, do logical not and cast it to number. if this value is then
    // truthy, then return the value. if not, then return the product of the given
    // value and the return value of the call with the decreased number
    return +!~-n || n * f(n - 1);
}

document.write(f(7));

Цикл в JavaScript выглядит следующим образом:

for (var = startvalue; var <= endvalue; var = var + increment) {
    // code to be executed
}
Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top