Skip to content

Instantly share code, notes, and snippets.

@vestige
Created April 24, 2012 13:27
Show Gist options
  • Save vestige/2479650 to your computer and use it in GitHub Desktop.
Save vestige/2479650 to your computer and use it in GitHub Desktop.
46.js
var Objectmaker = function () {
this.name = "This is it";
var that = {};
that.name = "And that's that";
return that;
};
var o = new Objectmaker();
document.writeln(o.name);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment