완로그
article thumbnail

⏳ 2023. 5. 8. - 2023. 5. 14.

 

for 반복문

for of

// for of

const fruits = ["Apple", "Banana", "Cherry"];

for (const fruit of fruits) {
  console.log(fruit);
}

for of를 사용하면 배열에서 코드를 우아하게 작성할 수 있다.

for in

// for in

const user = {
  name: "iam454",
  age: 90,
  isValid: true,
  email: "realseogy@gmail.com",
};

for (const key in user) {
  console.log(key);
  console.log(user[key]);
}

for in을 사용하면 객체에서 코드를 우아하게 작성할 수 있다.

지금은 순서대로 출력되었지만, 객체에서 속성들의 순서는 보장되지 않는다!

profile

완로그

@완석이

프론트엔드 개발자를 꿈꾸는 완석이의 일기장입니다.