[JavaScript] for in VS for of VS forEach() 차이

Yujin Hong·2022년 7월 8일
0

JavaScript

목록 보기
3/6

✅ for ... in ➡️ 객체에 사용

let obj = {
	name: 'Smith',
  	age: 30,
  	country: 'Korea'
};

for(let prop in obj){
	console.log(prop);
}
// output
name
age
country

✅ for ... of ➡️ 배열에 사용

let arr = ['a', 'b', 'c'];

for(let el of arr){
	console.log(el);
}
// output
a
b
c

✅ forEach() ➡️ 배열에 사용

let arr = ['a', 'b', 'c'];

arr.forEach(el => console.log(el));
// output
a
b
c
profile
Web Frontend

0개의 댓글