「JavaScript」typeof演算子でデータ型を確認する
書式
typeof operand
typeof 演算子は、未評価のオペランドの型を示す文字列を返します。
戻り値は、データ型を示す文字列を返します。
使用例
console.log(typeof 123); console.log(typeof "123"); console.log(typeof true); console.log(typeof 12.345);
実行結果
“number"
“string"
“boolean"
“number"