Skip to content

Instantly share code, notes, and snippets.

@videlais
Last active August 29, 2015 14:00
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/f5b4d54fb7978aa7051a to your computer and use it in GitHub Desktop.
Save videlais/f5b4d54fb7978aa7051a to your computer and use it in GitHub Desktop.
JS Lesson 1
var A = {
value: 1;
}
//A is an object
var B = function() {
this.value = 2;
}
//B is an object as a function
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment