Skip to content

Instantly share code, notes, and snippets.

@Nixinova
Created June 18, 2021 22:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Nixinova/a6ad07912353d4c804c1a9807433e9ab to your computer and use it in GitHub Desktop.
Save Nixinova/a6ad07912353d4c804c1a9807433e9ab to your computer and use it in GitHub Desktop.
JavaScript: pass-by-reference demonstration
let a = [1]
let b = a
b.push(2)
console.log(a) // [1,2]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment