Last active
September 21, 2019 07:30
-
-
Save hustKiwi/a100b1d87b51802f6228b6adcd992fa3 to your computer and use it in GitHub Desktop.
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
// Numbers | |
42 | |
3.1415 | |
NaN | |
// String | |
const name = 'Lux'; | |
`Hello ${name}.`; | |
// Boolean | |
true | |
false | |
// Null & Undefined | |
null | |
undefined | |
// Array | |
[42, 3.1415, 'Lux'] | |
// Object | |
{ | |
int: 42, | |
float: 3.1415, | |
name: 'Lux' | |
} | |
// Date | |
new Date('December 17, 1995 03:24:00') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment