Skip to content

Instantly share code, notes, and snippets.

@selbekk
Created June 12, 2018 19:31
Show Gist options
  • Save selbekk/b8dd7a22267bde3468a6148d289d98f7 to your computer and use it in GitHub Desktop.
Save selbekk/b8dd7a22267bde3468a6148d289d98f7 to your computer and use it in GitHub Desktop.
Object arithmetic
const object = {};
object + object
// "[object Object][object Object]"
object - object
// NaN
object * object
// NaN
object / object
// NaN
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment