SnipZard
Search snippets
Home
Portfolio
Contact
Nullable Types
Nullable types allow a variable to be either a type or null/undefined.
Snippet:
let
value
:
string
|
null
=
null
;
Copy Code
Example:
let
name
:
string
|
undefined
=
undefined
;
Copy Code