📌

Type of

2023/02/16に公開

データ型の種類を判定する

  const num = "8";

  console.log(typeof num);
// > string

判定結果は、string型で返ってくる

Discussion