배열: 연관성 있는 것들의 리스트 배열 선언 방법: [], new Array 사용1) const travel_spot = ['방콕', '뉴욕', '파리'];2) const travel_spot = new Array('방콕', '뉴욕', '파리');3) 빈 배열 선언 후 값 추가const travel_spot = []; (const travel_spot = new Array();)travel_spot[0] = '방콕';travel_spot[1] = '뉴욕';travel_spot[2] = '파리'; 배열 접근: index 사용 (0부터 시작) 배열 추가 - push, unshift, splice (const 사용 시 재할당 불가능 but 기존 배열 수정하는 것은 가능) push: 배열 뒤에 원소 추가 (반환..