Skip to content

Instantly share code, notes, and snippets.

@loganb
Created October 23, 2010 20:53
Show Gist options
  • Save loganb/642686 to your computer and use it in GitHub Desktop.
Save loganb/642686 to your computer and use it in GitHub Desktop.
function MyObject() {
this.x = 'somevalue';
}
var tmp = new MyObject();
tmp.x // <- 'somevalue'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment