Syntax of for of loop

const arr = [1, 2, 3];

for (const el of arr) {
   console.log(el)
}

//Result
//1
//2
//3