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'
/*
가장 흔하게 배열과 객체를 같이 사용하는 예시 중 하나입니다.
*/