Skip to content

Instantly share code, notes, and snippets.

@dimiro1
Created November 16, 2015 11:17
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 dimiro1/975f102ede864b02968d to your computer and use it in GitHub Desktop.
Save dimiro1/975f102ede864b02968d to your computer and use it in GitHub Desktop.
var thing = {n: 0};
function inc(param) {
param.n++;
}
inc(thing);
console.log(thing.n);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment