examples/js/continue_while.js. "use strict"; var n = 1; while (n < 7) { n++; if (n === 5) { continue; } console.log(n); }.
確定! 回上一頁