Skip to content

Instantly share code, notes, and snippets.

@hustKiwi
Last active September 21, 2019 07:30
Show Gist options
  • Save hustKiwi/a100b1d87b51802f6228b6adcd992fa3 to your computer and use it in GitHub Desktop.
Save hustKiwi/a100b1d87b51802f6228b6adcd992fa3 to your computer and use it in GitHub Desktop.
// 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