javascript에서는 Airbnb code convention style을 주로 사용한다.
VScode - [File] - [Settings] - [tab Size, tab Width 검색]
VScode - [File] - [Settings] - [Word Wrap Column 검색]
변수, 함수, 인스턴스는 *Camel Case(=lower 카멜 케이스)*를 사용한다.
ex) camelCase
함수의 경우 동사+명사 형태로 구성한다.
ex) getUserInfomation()
Class, Contructor는 *Pascal Case(=upper 카멜 케이스)*를 사용한다.
ex) CamelCase
글자의 길이
flag로 사용되는 변수
약칭의 사용
let idx; // bad
let index; // good
let cnt; // bad
let count; // good
let arr; // bad
let array; // good
let seoul2Bucheon; // bad
let seoulToBucheon; // good