5-2 QUIZ 변수 타입 출력하기

✅ 퀴즈 : 변수 타입 출력하기

#5. 타입 및 변수에서는 변수의 종류에 대해 알아봤습니다.

변수를 자유롭게 생성하고, 각 변수의 타입을 출력 해 보세요.

const num = 7;
const str = "String";
const und = undefined;
const bool = true;
const obj = {key:"value"};

console.log(typeof(num));
console.log(typeof(bool));
console.log(typeof(str));
console.log(typeof(und));
console.log(typeof(obj));

좋은 웹페이지 즐겨찾기