データ型とは? undefined, Boolean, Number, String, BigInt, Symbol, Object, Function, null等の値の型のこと データ型を調べる typeof演算子で調べることができる JavaScriptは他の言語の浮動小数点型(Float型)と整数型(Integer型)がNumber型として扱われるので注意 MDNから引用 // 数値 typeof 37 === 'number'; typeof 3.14 === 'number'; typeof(42) === 'number'; typeof Math.LN2 === 'number…