Skip to content

Instantly share code, notes, and snippets.

@nooglersoon
Last active May 20, 2022 00:54
Show Gist options
  • Save nooglersoon/8e9adbad51122bef38e0066a2809e591 to your computer and use it in GitHub Desktop.
Save nooglersoon/8e9adbad51122bef38e0066a2809e591 to your computer and use it in GitHub Desktop.
Getting Started with JavaScript
// Data Type
// Numbers
42
3.14
// String
"Hello, World!"
// Boolean
true
false
// Null or Undefined
null
undefined
// Array
[1,2,3]
// Objects
{name: "Kyle"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment