๐ฉ๐ป ์๊ณ ๋ฆฌ์ฆ/๐ฅ๏ธ FE
[๋ฐ๋๋ผ JS] ๋ ธ๋ง๋์ฝ๋ #2.5
์ค๋ธ ๐งโ๏ธ
2022. 9. 26. 00:25
๋ฐ์ดํฐ๋ฅผ ์ด๋ป๊ฒ ํ๋ฉด ์ต์ ์ ๋ฐฉ๋ฒ์ผ๋ก ์ ๋ฆฌํ ์ ์๋์ง๊ฐ
์ปดํจํฐ ๊ณผํ์ ์์ด์ ์์ฃผ ์ค์ํ ๋ฐฉ๋ฒ์ด๋ค.
arrays๋ []๊ณผ ,๋ฅผ ์ฌ์ฉํ๋ค
const daysOfWeek = ["mon", "tue", "wed", "thu", "fri", "sat", "sun"];
console.log(daysOfWeek[4]);
->daysOfWweek์ ๋ฐฐ์ด์์ 4๋ฒ์งธ๋ฅผ ๋ถ๋ฌ์จ๋ค.
const dayOfWeek = ["mon", "tue", "wed", "thu", "fri", "sat"];
console.log(dayOfWeek);
dayOfWeek.push("sun")
->array์ sun์ ์ถ๊ฐํ๋ค.
console.log(dayOfWeek);
