TypeScriptの型をtypeofメソッドで取得する
typeofメソッドを使うことで、TypeScriptの変数の型を取得することができます。
基本的な使い方は以下の通りです。
typeof(変数)
typeofメソッドを使った具体的なコード例
文字列型の変数を調べた場合
let s: string = "hello, world!" // string型の変数sを定義
let sType = typeof(s) // 変数sの型を取得
console.log(sType) // => 'string'
数値型の変数を調べた場合
let n: number = 1000 // number型の変数nを定義
let nType = typeof(n) // 変数nの型を取得
console.log(nType) // => 'number'