Event Handlers

Verze:

31. 12. 2025

Zodpovědná osoba:

Dominik Šlechta

Event handler function names MUST be prefixed with handle (e.g., handleClick, handleSubmit).

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() {}