이게 그니까
데이터를 정리할 수 있는 방법인데 🤔
가장 기본적인 데이터 구조가 배열(array)이라고 보면 됨.
const mon = "mon";
const tue = "tue";
const wed = "wed";
.
.
.
const sat = "sat";
효율적이지 않음.
👉 리스트로 그룹화시키자!
const daysOfWeek = ["mon", "tue", "wed", "thu", "fri", "sat", "sun"];
console.log(daysOfWeek);
그럼, 데이터 타입 짬뽕인 배열도 가능한가? 물론!
const jjambbong = [1, 2, "hello", false, null, true, undefined, "hanbit"];
const daysOfWeek = ["mon", "tue", "wed", "thu", "fri", "sat"];
//Get Item from Array
console.log(daysOfWeek[1]);
컴퓨터는 0부터 숫자를 셈
0, 1, 2, 3, 4, 5....
const daysOfWeek = ["mon", "tue", "wed", "thu", "fri", "sat"];
//Add one to the array
daysOfWeek.push("sun");
console.log(daysOfWeek);
.push()
배열에 뭔가를 추가해줄 때 사용한다!