Skip to content

Instantly share code, notes, and snippets.

@harajune
Created August 12, 2022 01:42
Show Gist options
  • Select an option

  • Save harajune/d9620ccba66840c974dbe8325fb1e9a8 to your computer and use it in GitHub Desktop.

Select an option

Save harajune/d9620ccba66840c974dbe8325fb1e9a8 to your computer and use it in GitHub Desktop.
const array = [1]
const anotherArray = [1]
const reference = array
console.log(array === reference) // true
console.log(anotherArray === reference) // false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment