Skip to content

Instantly share code, notes, and snippets.

@jcastellanos003
Created March 23, 2021 12:50
Show Gist options
  • Save jcastellanos003/4359ccb2f44632a8f68f40cc272496a6 to your computer and use it in GitHub Desktop.
Save jcastellanos003/4359ccb2f44632a8f68f40cc272496a6 to your computer and use it in GitHub Desktop.
Math Operators
const a = 2
const b = '2'
const c = a + b
const d = a - b
console.log(c)
console.log(d)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment