for of loop continue

const arr = [1, 2, 3];

for (const el of arr) {
   if (el === 2) continue;
   console.log(el)
}

//Result
//1
//3