for of, for in 차이, break, continue (반복문)
2021.03.28
for in과 for of의 차이는 for in은 index값을 출력하지만 for of는 value값을 출력 한다. break문과 continue문의 경우에도 while문에서 가끔 사용된다. 먼저 for in const colors = ['red', 'green', 'blue', 'yellow', 'pink']; for (let color in colors) { // index, value console.log(color, colors[color]); } 두 번째는 for of const colors = ['red', 'green', 'blue', 'yellow', 'pink']; for (let color of colors) { // value console.log(color); } break문과 co..