continue គឺជាបញ្ជាតម្រូវឲ្យអនុវត្តសារឡើងវិញជាបន្ទាន់ នូវក្រុមបញ្ជានៅក្នុងបញ្ជា while ឬ for/in ។ ពិនិត្យកម្មវិធីខាងក្រោមនេះ៖
let resume = {'firstName':'Kosal', 'lastName':'Keo', 'age':30, 'address':'Phnom Penh'}
for(label in resume){
console.log(`The value of key ${label} is ${resume[label]}`)
if(label == 'lastName'){
continue
}
}
let dimension = [100, 1.75, 500, true, 'width', 'height']
let index = 0
while(true){
if(index == 5){
continue
}
console.log(`The element of the index ${index} in the array dimension is ${dimension[index]}`)
index += 1
}
យើងត្រូវកត់សម្គាល់ថា ការប្រើបញ្ជា continue គឺជាបញ្ជាតម្រូវឲ្យអនុវត្តសារឡើងវិញជាបន្ទាន់ នូវក្រុមបញ្ជានៅក្នុងបញ្ជា while ឬ for/in ដោយទុកចោលបញ្ជាផ្សេងៗទៀត នៅខាងក្រោមនោះ៕