Skip to content

Instantly share code, notes, and snippets.

@videlais
Created May 2, 2014 14:44
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 videlais/0605a586408e800e76f3 to your computer and use it in GitHub Desktop.
Save videlais/0605a586408e800e76f3 to your computer and use it in GitHub Desktop.
JS Lesson 4
function A() {
this.value = 1;
}
var B = new A();
B.value = 2;
var C = new A();
C.value = "Three";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment