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 ដោយ​ទុកចោល​បញ្ជា​ផ្សេង​ៗ​ទៀត​ នៅ​ខាង​ក្រោម​នោះ​៕