JavaScript/Reserved words/for
Appearance
The for keyword
[edit | edit source]The for keyword starts a loop that executes until the condition is met.
Examples
[edit | edit source] The code
var array = [2, 3, 5, 7, 10, 11], result = 1;
for (var i = 0; i < array.length; i++) {
result += array[i];
console.log("result = " + result);
if (result%2 == 0) {
continue;
}
if (result > 20) {
break;
}
}
returns the following:
result = 3 result = 6 result = 11 result = 18 result = 28 result = 39