What is the rationale behind using the equal sign "=" instead of the dot "." when attaching a function to an event listener in JavaScript? Normally, it is the convention to use the dot as notation for perform an action.
clickme.onclick = function() {
alert("pikachu");
}