JS. 객체와 배열 동시 사용

MJ·2023년 4월 12일
0

Java Script

목록 보기
45/57
post-thumbnail

객체 + 배열

  • 객체와 배열을 따로 사용할수도 있지만, 객체에서 요소들이 순서가 필요한 경우에는
    배열과 같이 사용하면 더욱 강력합니다.
    ( 반대의 경우도 해당 )

let comments = [ 
  { username: 'anthony', text: 'lolol', votes: 9 },
  { username: 'tanos', text: 'hahahah', votes: 15121} 
  ]


console.log(comments[0]);	// { username: 'anthony', text: 'lolol', votes: 9 }


comments[0].username = 'anny';
console.log(comments[0].username);	//  'anny'

/* 
가장 흔하게 배열과 객체를 같이 사용하는 예시 중 하나입니다.
*/
profile
프론트엔드 개발자가 되기 위한 학습 과정을 정리하는 블로그

0개의 댓글