「JavaScript」typeof 演算子のサンプル

2021年8月11日

構文
typeof operand
operand は、オブジェクトまたはプリミティブ型を表す式を返します。
使用例

/*真偽値*/
console.log(typeof true);

/* undefined*/
console.log(typeof aa);

/*数値*/
console.log(typeof 345);

/*文字列*/
console.log(typeof 'test');

行結果
> “boolean"
> “undefined"
> “number"
> “string"

JavaScript

Posted by arkgame