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

論理型 (boolean type)

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

論理型リテラル#

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

javascript
const isOk = true;
const isOk = false;
javascript
const isOk = true;
const isOk = false;

論理型の型注釈#

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

typescript
const isOk: boolean = true;
typescript
const isOk: boolean = true;

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