how to crate an object and store its properties in js code example
Example: adding function to objects js
var myObj = {
myFunc: function(param){
//do stuff
}
}
var myObj = {
myFunc: function(param){
//do stuff
}
}