Indeed, you need to back up and read some of the links above. But as a quick example:
var house = {} ;
house.isDoorOpen = false ;
house.openDoor = function(){
house.isDoorOpen = true ;
}
Here houseis the object. He has the ability to: house.isDoorOpen. Here it is more like an adjective. Either the door is open (true) or closed (false). As it sounds, he describes the property of the house.
In addition, it has a method openDoor(which is used as follows:) house.openDoor(). This is what he can do. In this case, the action openDooraffects the property isDoorOpen, making it true.