Skip to content

Instantly share code, notes, and snippets.

@awilson28
Created March 16, 2017 19:52
Show Gist options
  • Save awilson28/004476b93237f5d5cfb59b764142d0a9 to your computer and use it in GitHub Desktop.
Save awilson28/004476b93237f5d5cfb59b764142d0a9 to your computer and use it in GitHub Desktop.
function changeStuff(num, obj1, obj2){
num = num * 10;
obj1.item = “changed”;
obj2 = {item: “changed”};
}
var num = 10;
var obj1 = {item: “unchanged”};
var obj2 = {item: “unchanged”};
changeStuff(num, obj1, obj2);
console.log(num); // 10
console.log(obj1.item); // ‘unchanged’
console.log(obj2.item); // ‘unchanged’
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment