let a;
console.log(typeof a); // 出力: "undefined"

console.log(typeof true); // 出力: "boolean"
console.log(typeof 42); // 出力: "number"
console.log(typeof "Hello"); // 出力: "string"
typeof operand // operandはオペランドを意味します
let x = 42;
let y = "Hello";
let z = {key: "value"};

console.log(typeof x); // 出力: "number"
console.log(typeof y); // 出力: "string"
console.log(typeof z); // 出力: "object"
/* Numbers */
typeof 24 === "number"
typeof 3.14 === "number"
typeof NaN === "number"

typeof parseInt("10px") === "number"
typeof Number("2") === "number"  
typeof Number("文字") === "number" 

/* Strings */
typeof "コーディング" === "string"
typeof "" === "string"
typeof `template literal` === "string"
typeof "24" === "string"
typeof String(24) === "string"

/* Booleans */
typeof true === "boolean"
typeof false === "boolean"
typeof Boolean(24) === "boolean"

typeof !!24 === "boolean" // 否定(!)を2回使うとBoolean()と同じです

/* Undefined */
var x;
typeof x === "undefined";
typeof undefined === "undefined";

typeof y === "undefined"; // 宣言されていない変数も"undefined"を返します

/* Objects */
typeof {param: 1} === "object";
typeof {} === "object";

typeof [1, 2, 3] === "object"; // 配列も"object"を返します
typeof [] === "object"; // 空配列も"object"を返します

typeof /regex/ === "object"; // 正規表現も"object"を返します

typeof null === "object"; // nullも"object"を返します

/* Functions */
function $() {}
typeof $ === "function";

typeof function () {} === "function";
typeof class ClassName {} === "function";

/* Symbols */
typeof Symbol() === "symbol";
typeof Symbol("foo") === "symbol";

/* BigInts */
typeof 1n === "bigint";
typeof BigInt("1") === "bigint";
console.log(typeof null); // 出力: "object"
let regex = /[a-zA-Z]/;
console.log(typeof regex); // 出力: "object"
const arr = [1, 2, 3];
console.log(typeof arr); // 出力: "object"
const arr = [1, 2, 3];
console.log(Array.isArray(arr)); // true
// xを宣言したことがない場合
console.log(typeof x); // "undefined"
/* 値が割り当てられていない変数 x */
let x;

if (x === undefined) {
    console.log("trueと評価されます。");
} else {
    console.log("falseと評価されます。");
}
// 出力: "trueと評価されます。"

/* 宣言されていない変数 y */
try {
    y; // 変数にアクセスを試みる
    console.log('変数は宣言されています。');
} catch (error) {
    console.log('変数は宣言されていません。'); 
}
// 出力: "変数は宣言されていません。"
if (typeof jQuery === "function") {
    console.log("jQueryがロードされて使用可能です。");
} else {
    console.log("jQueryはロードされていません。");
}