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