メインコンテンツまでスキップ

論理型 (boolean type)

JavaScriptの論理型(boolean type)は、truefalseの論理値からなる型です。

論理型リテラル

JavaScriptの論理型リテラルはtrueまたはfalseを用いて次のように書きます。

ts
const isOk = true;
const isPanda = false;
ts
const isOk = true;
const isPanda = false;

論理型の型注釈

TypeScriptの論理型の型注釈はbooleanを使います。

ts
const isOk: boolean = true;
ts
const isOk: boolean = true;

TypeScriptには大文字で始まるBoolean型がありますが、これとbooleanは別の型です。

  • 質問する ─ 読んでも分からなかったこと、TypeScriptで分からないこと、お気軽にGitHubまで🙂
  • 問題を報告する ─ 文章やサンプルコードなどの誤植はお知らせください。