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

김형석·2022년 4월 15일
0

codemate-javascript

목록 보기
8/20

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

#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));

profile
블로그 이사 : https://hengxi.tistory.com

0개의 댓글

관련 채용 정보