Skip to content

Instantly share code, notes, and snippets.

@teimurjan
Created May 21, 2018 06:41
Show Gist options
  • Save teimurjan/ba9b4c2ac1e2be078e85cf6f60976877 to your computer and use it in GitHub Desktop.
Save teimurjan/ba9b4c2ac1e2be078e85cf6f60976877 to your computer and use it in GitHub Desktop.
blog-react-applications-optimization
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