出力5-2 QUIZ変数タイプ

441 ワード

テスト:出力変数のタイプ
#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));