/*변수사용 케이스는

camel case 항상변수시작은 소문자로시작하고 다음단어는 스페이스는
적용이 안되니 단어로 시작할때 대문자로 시작해야한다 .또는/는 변수명 사용이
안된다.

constOfWeek와 같이

*/

const monday ="Mon";
const tue ="tue";
const wed ="wed";
const thu ="thu";
const fri ="fri";

console.log(monday,tue,wed,thu,fri);

const dayOfWeek =[];

const info =[monday,tue,wed,thu,fri,true];

배열을 정의할때 이런식으로 정의가 가능하고

console.log(info[0]);

출력하면 컴퓨터는 0부터 시작하기 때문에 monday를 출력한다.

+ Recent posts