This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Boolean | |
* | |
* The most basic datatype is the simple true/false value, | |
* which JavaScript and TypeScript (as well as other languages) call a 'boolean' value. | |
*/ | |
var isDone: boolean = false; | |
/** | |
* Number |