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

boolean型 (論理型)

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

boolean型リテラル

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

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

boolean型の型注釈

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

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

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