July 2017
Intermediate to advanced
454 pages
10h 1m
English
The Boolean type is a very simple type that can hold either of two values, true or false. This Boolean type is used to maintain the state in a variable:
let isSaved: Boolean; isSaved = true;
Here, the isSaved variable of type Boolean is assigned with the value true.
Read now
Unlock full access