SnipZard
Search snippets
Home
Portfolio
Contact
Union Types
Union types allow a value to be one of several types.
Snippet:
let
value
:
string
|
number
;
Copy Code
Example:
let
id
:
string
|
number
=
42
;
Copy Code