ํ๊ธฐ๋ฒ
- dash-case(kebab-case) : HTML, CSS
- the-quick-brown-fox-jumps-over-the-lazy-dog (ํ๋์ ๋จ์ด๋ก ์ธ์, -๋ฅผ ํตํด ๋์ด์ฐ๊ธฐ)
- snack_case : HTML, CSS
- the_quick_brown_fox_jumps_over_the_lazy_dog
- camelCase : JS
- theQuickBrownFoxJumpsOverTheLazyDog
- PascalCase : JS (์์ฑ์ ํจ์์์ ๋ง์ด ์ฌ์ฉ,,!)
- TheQuickBrownFoxJumpsOverTheLazyDog
- Zero-based Numbering : 0๊ธฐ๋ฐ ๋ฒํธ ๋งค๊ธฐ๊ธฐ! ํน์ํ ๊ฒฝ์ฐ๋ฅผ ์ ์ธํ๊ณ 0๋ถํฐ ์์ํ๋ค
let fruits = ['Apple', 'Banana', 'Cherry'];
console.log(fruits[0]);
console.log(fruits[1]);
console.log(fruits[2]);
console.log(new Date('2021-01-30').getDay()); //6, ํ ์์ผ
console.log(new Date('2023-01-30').getDay()); //1, ์์์ผ
์ฃผ์
// ํ ์ค ๋ฉ๋ชจ
/* ํ ์ค ๋ฉ๋ชจ */
//** ์ฌ๋ฌ ์ค ๋ฉ๋ชจ
*
*
*/