break 敘述, 是用來「跳出」迴圈用的,繼續執行迴圈之後的JavaScript 程式。 JS ... var i=0; while (i<=10) { i++; if (i==7){ continue; } ...
確定! 回上一頁