Skip to content

Instantly share code, notes, and snippets.

@jlggross
Last active April 18, 2021 22:08
Show Gist options
  • Save jlggross/76fbe383487e18794bc95905f0af402f to your computer and use it in GitHub Desktop.
Save jlggross/76fbe383487e18794bc95905f0af402f to your computer and use it in GitHub Desktop.
Declaration
var a = 10 // number
var b = 10 // number
console.log(a == b) // true
var c = "10" // string
console.log(c == b) // also true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment