JavaScript では、変数にどんなデータが入っているかを「実行時」に調べたい場面があります。 そんなときに使えるのが typeof 演算子 です。 typeof は JavaScript で値の「データ型(型)」を調べる演算子 です。
I will explain the basic rules for checking data types in an easy-to-understand way. In JavaScript, there are situations where you want to determine the type of data you are handling, such as whether ...