Skip to content

Instantly share code, notes, and snippets.

@6qat
Created November 20, 2012 14:10
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 6qat/4118170 to your computer and use it in GitHub Desktop.
Save 6qat/4118170 to your computer and use it in GitHub Desktop.
Starting using GistBox
function Person() {
this.name = jeff;
this.age = 27;
}
new Person();
function Person() {
this.name = jeff;
this.age = 27;
this.gist = "Awesome !!!";
}
new Person();
function Person2() {
this.name = jeff;
this.age = 27;
this.gist = "Awesome !!!";
}
new Person2();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment