1) 배열이란?
const color = ['red', 'blue', 'green'];
2) 배열 데이터 불러오기
const color = ['red', 'blue', 'green'];
console.log(color[0]); // -> 결과값 'red'
// 배열 안의 배열은??
const color = ['red', 'blue', ['yellow', 'pink']];
console.log(color[2][0]); //-> 결과값 'yellow'
3) 데이터 수정과 추가
const color = ['red', 'blue', 'green'];
// 수정
color[1] = 'pink';
console.log(color[1]); //-> 결과값 'pink'
// 추가
color[3] = 'yellow';
console.log(color[3]); //->'yellow' 비어있는 [3]에 추가
color.push('black');
console.log(color[4]); //->'black' push() 함수 활용, 마지막 자리에 추가
4) 헐 const 재할당 안되는 거 아님?
const color = ['red', 'blue', 'green'];
const color = ['red'];// [박스]가 또 나와서 에러,