Skip to content

Instantly share code, notes, and snippets.

@santosh79
Created February 6, 2015 19:51
Show Gist options
  • Save santosh79/15a73b26f2924934c287 to your computer and use it in GitHub Desktop.
Save santosh79/15a73b26f2924934c287 to your computer and use it in GitHub Desktop.
function setVar(arg) {
this.var = arg;
}
var obj = Object.create(null);
obj.setVar = setVar;
obj.setVar('hello');
console.log(obj.var); // => 'hello'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment