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));
Author And Source
이 문제에 관하여(5-2 QUIZ 변수 타입 출력하기), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@jinhengxi/5-2-QUIZ-변수-타입-출력하기저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)