노마드 코더님의 자바스크립트 강의를 보고 정리한 내용입니다.
Camel Case
방식을 따른다.// ex.1
const mon = "Mon";
const tue = "tue";
const wed = "wed";
const thu = "thu";
const fri = "fri";
console.log(mon, tue, wed, thu, fri);
// ex.2 Array
const daysOfWeek = ['mon', 'tue', 'wed', 'thu', 'fri', 'sat', 'sun'];
console.log(daysOfWeek);
// ex.3 Array에서 특정 위치의 데이터를 indexing 하고 싶을 때
console.log(daysOfWeek[0]);
// 결과 : 'mon'