Notice
«   2024/11   »
1 2
3 4 5 6 7 8 9
10 11 12 13 14 15 16
17 18 19 20 21 22 23
24 25 26 27 28 29 30
관리 메뉴

Jade_o.o

[javascript] JavaScript 공부 정리2 - 표기법(dash-case, snake_case, camelCase, ParcelCase), 주석 본문

JavaScript

[javascript] JavaScript 공부 정리2 - 표기법(dash-case, snake_case, camelCase, ParcelCase), 주석

by jade 2024. 1. 16. 13:52
JavaScript의 표기법

     • 1) dash-case(kebab-case)

     • 2) snake_case

     • 3) camelCase

     • 4) ParcelCase

 

 

1) dash-case(kebab-case)

     • HTML

     • CSS

     • the-quick-brown-fox-jumps-over-the-laze-dog

 

2) snake_case

     • HTML

     • CSS

     • the_quick_brown_fox_jumps_over_the_laze_dog

 

3) camelCase

     • JS (JavaScript)

     • theQuickBrownFoxJumpsOverTheLazeDog

 

4) PascalCase

     • JS (JavaScript)

     • TheQuickBrownFoxJumpsOverTheLazeDog

 

 

Zero-based Numbering

     • 0 기반 번호 매기기!

     • 특수한 경우를 제외하고 0부터 숫자를 시작함

          - 1 2 3 4 5 6 7 8 9 10 ~

          - 0 1 2 3 4 5 6 7 8 9 ~

let fruits ['Apple', 'Banana', 'Cherry'];

console.log(fruits[0]); // 'Apple'
console.log(fruits[1]); // 'Banana'
console.log(fruits[2]); // 'Caherry'

 

 

주석(Comments)

     • 한줄 메모

     • 여러줄 메모

// 한줄 메모
/* 한줄 메모 */

/* 
 * 여러 줄
 * 메모1
 * 메모2
 */