카멜케이스를 사용한다.
let nbr = 123;
const str = "hello";
문자열을 사용할 때는 작은따옴표(')를 사용한다.
const str = 'hello';
카멜케이스를 사용한다.
function myFunction() {...}
카멜케이스를 사용한다.
const thisIsMyObject = {...};
❗️단, 객체를 export할 때는 파스칼케이스를 사용한다.
const MyObject = {...};
export default MyObject;
파스칼케이스를 사용한다.
class MyStudent {...};