boolean型 (論理型)
JavaScriptのboolean型は、true
とfalse
の論理値からなる型です。
boolean型リテラル
JavaScriptのboolean型リテラルはtrue
またはfalse
を用いて次のように書きます。
ts
constisOk = true;constisPanda = false;
ts
constisOk = true;constisPanda = false;
boolean型の型注釈
TypeScriptのboolean型の型注釈はboolean
を使います。
ts
constisOk : boolean = true;
ts
constisOk : boolean = true;
TypeScriptには大文字で始まるBoolean
型がありますが、これとboolean
は別の型です。