Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
Удаленная работа для IT-специалистов
var i = 10; var array = []; while (i--) { array.push(function () { return i + i; }); } console.log([ array[0](), // -2 array[1](), // -2 ])
var i = 10; while (i--) { console.log('while', i); } console.log('result, i);
while 9 while 8 while 7 while 6 while 5 while 4 while 3 while 2 while 1 while 0 result -1
var i = 10; while (i) { i--; console.log('while', i); } console.log('result, i);
while 9 while 8 while 7 while 6 while 5 while 4 while 3 while 2 while 1 while 0 result 0