在es6中,continue語句用於跳過當前迭代中的後續語句,並將控制權帶回循環的開頭;continue不會退出循環,而是終止當前迭代並開始後續迭代,語法為「for(...){...continue}」。
本教學操作環境:windows10系統、ECMAScript 6.0版本、Dell G3電腦。
continue語句跳過目前迭代中的後續語句,並將控制權帶回迴圈的開頭。與break語句不同,continue不會退出迴圈。它終止當前迭代並開始後續迭代。以下是continue語句的範例。
範例 (Example)
var num = 0 var count = 0; for(num = 0;num<= 20;num++) { if (num % 2 == 0) { continue } count++ } console.log(" The count of odd values between 0 and 20 is: "+count)
上面的範例顯示0到20之間的偶數值。如果數字是偶數,則循環退出目前迭代。這是使用continue語句實現的。
成功執行上述程式碼後,將顯示下列輸出。
The count of odd values between 0 and 20 is: 10
擴充知識
#es6迴圈
##1. for循環支援break、continue語法,break終止循環,continue跳過本次循環#2. forEach不支援break、continue語法,forEach循環不接受控制,必須從頭遍歷到尾3. everylet arr = [1,2,3,4,5] arr.every((item) => { console.log(item) return true })
let arr = [1,2,3,4,5] for(let index in arr) { console.log(arr[index]) }
let arr = [1,2,3,4,5] for(let item of arr) { console.log(item) }
以上是es6中continue怎麼用的詳細內容。更多資訊請關注PHP中文網其他相關文章!