how to make object with propertys javascript code example
Example 1: adding function to objects js
var myObj = {
myFunc: function(param){
//do stuff
}
}
Example 2: how to create a object in javascript
var about = {
name:"lanitoman",
age:1023,
isHeProgrammer:true
}