Event handler function names MUST be prefixed with handle.
Example (Correct):
function handleClick() {}
function handleSubmit() {}
function handleInputChange() {}
function handleFormReset() {}
Example (Incorrect):
function onClick() {}
function submitForm() {}
function inputChanged() {}