VScode - [File] - [Settings] - [tab Size, tab Width 검색]
VScode - [File] - [Settings] - [Word Wrap Column 검색]
변수, 함수, 인스턴스는 *Camel Case(=lower 카멜 케이스)*를 사용해요.
ex) camelCase
함수의 경우 동사+명사 형태로 구성해요.
ex) getUserInfomation()
글자의 길이
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