typeof アルゴリズムを使用
typeof のオペランドは未定義であり、戻り値は "未定義" です。
次は x をオペランドとして定義します:
状況は 5 つあります。
オペランドは数値です。typeof(x) は "数値" を返します。
文字列 typeof(x) は "文字列" を返します;
ブール値 typeof(x) は "boolean" を返します;
オブジェクト、配列、null: typeof(x) は "オブジェクト" を返します;
関数 typeof(x) は「関数」を返します。
例: