JSFiddle - React, Tailwind, and code Playground

by amrendra kumar

JavaScript

const arr = [1,2,3]

for (let a of arr) {
	if(a === 2){
  	continue
  }
  
  console.log('a', a)
  
}