Created
June 12, 2018 19:31
-
-
Save selbekk/b8dd7a22267bde3468a6148d289d98f7 to your computer and use it in GitHub Desktop.
Object arithmetic
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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