Please enable JavaScript.
Coggle requires JavaScript to display documents.
TypeScript (Basic Types (number (binary, decimal, octal, hexadecimal),…
TypeScript
Basic Types
boolean
number
binary
decimal
octal
hexadecimal
string
""
''
``(template strings)
Array
[]
Array<elemType>
Tuple
[string, number]
enum
any
Object
void
undefined
null
never
Type assertions
as
<elemType>
Variable Declarations
let
const