Skip to content

Instantly share code, notes, and snippets.

@cdaz5
Created July 7, 2017 16:39
Show Gist options
  • Save cdaz5/b1bfe0ab64d5d8cee950c68c034a2349 to your computer and use it in GitHub Desktop.
Save cdaz5/b1bfe0ab64d5d8cee950c68c034a2349 to your computer and use it in GitHub Desktop.
Javascript Pass by Reference Example
let a = {language: "Javascript"}
let b = a
console.log(a) // => {language: "Javascript"}
console.log(b) => {language: "Javascript"}
a.language = "Ruby"
console.log(a) // => {language: "Ruby"}
console.log(b) // => {language: "Ruby"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment