충분히 쓰임새를 알 수 있도록 네이밍 한다.
//Bad
const pw = 'asdf';
//Good
const password = 'asdf';
lowerCamelCase 로 표기한다.
함수 이름은 반드시 동사로 표기
//Bad
function SayHello(){}
//Good
function sayHello(){}
lowerCamelCase 로 표기한다.
//Bad
const Number = 10;
const MY_NUMBER = 5;
//Good
const number = 10;
const myNumber = 5;
하드코딩하는 값을 상수로 지정하여 쓸 때 UPPER_SNAKE_CASE 로 표기한다.
const SERVER_TOKEN = 'VALUE OF TOKEN';
lowerCamelCase 로 표기한다.
const userInfo = {};
PascalCase 로 표기한다.
//Bad
class user{}
//Good
class User{}