Created
May 21, 2018 06:41
-
-
Save teimurjan/ba9b4c2ac1e2be078e85cf6f60976877 to your computer and use it in GitHub Desktop.
blog-react-applications-optimization
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 arr1 = [1, 2, 3]; | |
const arr2 = [1, 2, 3]; | |
arr1 === arr2; // false | |
const obj1 = { foo: "bar" }; | |
const obj2 = { foo: "bar" }; | |
obj1 === obj2; // false |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment