Object Oriented Javascript

In this fiddle just learn how Object Oriented JavaScript works.

by Prasad Gavande

JavaScript

/*// Create first object.

There are 2 types of object, 
1. Constructor function
2. Literal notation
*/
// constructor function

Function MyObject(){

};

//literal notation
var myObject = {

};