I apologize in advance for my ignorance. I'm teaching myself JavaScript and currently experimenting with events, though I still getting confused with JS objects, I am not to sure what the console prints on the following event.
element.onclick = function(objEvent) {
Console.log(objEvent);
}
The console shows click clientX=76, clientY=20. What exactly is that information ? Are those properties of the event object ?