Javascript(어레이) Array 어레이는 일련의 자료들을 정렬 한것이다. 어떠한 데이터 타입이라도 올 수 있다. 예시 let concepts = ['creating arrays', 'array structures', 'array manipulation']; Array 만들기 (array literal) const hobbies = ['nothing', 'nothing', 'nothing']; console.log(hobbies) ; // ['nothing', 'nothing', 'nothing'] 출력 다른방법 const classArray = new Array(0, 1, 2, 3); Array에 접근하기 어레이는 zero index 를 사용한다. 제일 처음오는게 0번으로, 어레이이름[번호] 식으..