Object Oriented Javascript
In this fiddle just learn how Object Oriented JavaScript works.
JavaScript
/*// Create first object.
There are 2 types of object,
1. Constructor function
2. Literal notation
*/
// constructor function
Function MyObject(){
};
//literal notation
var myObject = {
};