Skip to content

Instantly share code, notes, and snippets.

@cdaz5
Last active July 7, 2017 21:33
Show Gist options
  • Select an option

  • Save cdaz5/068378fe1c7ef2e27c577fe174c627de to your computer and use it in GitHub Desktop.

Select an option

Save cdaz5/068378fe1c7ef2e27c577fe174c627de to your computer and use it in GitHub Desktop.
Javascript Pass by Value Example
let a = 5
let b = a
console.log(a) // => 5
console.log(b) // => 5
a = 1
console.log(a) // => 1
console.log(b) // => 5
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment