const array =[1,2,3,4,5]; console.log(array); const array2 = [1, 'blabla',{}, 4]; console.log(array2[0]); console.log(array2[1]); console.log(array2[2]); console.log(array2[3]); const object = [ {name: '멍멍이'}, {name: '야옹이'} ]; console.log(object[0]); console.log(object[0].name); [] 이 괄호 사이에 있는 것을 배열이라고 한다. 여러 자료형들을 한 배열에 넣을 수 있다. index는 0 부터 시작을 한다. 객체 배열도 만들 수 있다. 객체에서 값을 호출하려면, 배열[인덱스].키 이렇게 호..