while loop. Copy Create a loop that runs as long as i is less than 10, but increase i with 2 each time. var i = 0 while(i < 10){ console.log(i); i = i + 2; }.
確定! 回上一頁