let i = 0; while (i < 3) { // shows 0, then 1, then 2 alert( i ); i++; }. A single execution of the loop body is called an iteration.
確定! 回上一頁