Arrays

김한빛·2022년 8월 21일
0
post-custom-banner

이게 그니까
데이터를 정리할 수 있는 방법인데 🤔
가장 기본적인 데이터 구조가 배열(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()
배열에 뭔가를 추가해줄 때 사용한다!

profile
얕고 길게
post-custom-banner

0개의 댓글