how to use a object property in object function in javascript code example
Example 1: adding function to objects js
var myObj = {
myFunc: function(param){
//do stuff
}
}
Example 2: js create object with properties
var mycar = new Car('Eagle', 'Talon TSi', 1993);