Created
October 18, 2018 16:44
-
-
Save fredbegin11/fdc8c427cb338e4647807fd1efe58262 to your computer and use it in GitHub Desktop.
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 object1 = { key: "value" } | |
| const object2 = { key: "value" } | |
| object1 === object2 // false | |
| object1 === object1 // true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment