//변수를 선언할때는 기본으로 const 쓰기
//필요할때만 let!
//String
// const what = "Nicolas"
// console.log(what);
//Boolean
//const wat = true;
// Number
// const wat = 666;
//Float
//const wat = 55.1;
//우리가 가진 데이터 타입 정렬
//Array, Object
const daysOfWeek = ["Mon","Tue","Wed","Thu","Fri","Sat","Sun"];
console.log(daysOfWeek);
const nicoInfo = {
name:"Nicolas",
age:33,
gender:"Male",
inHandsome:true,
favMovies: ["Along the gods","LOTR","Oldboy"],
favFoodes: [
{
name: "Kimchi",
fatty: false
},
{
name: "Cheese buger",
fatty: true
}
]
}
console.log(nicoInfo);