Skip to content

Instantly share code, notes, and snippets.

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