Forum Moderators: open
function myFunction() function myfunction()
Methods should be verbs, in mixed case with the first letter lowercase, with the first letter of each internal word capitalized.
Function names must always start with a lowercase letter. When a function name consists of more than one word, the first letter of each new word must be capitalized. This is commonly called "camelCase" formatting.
Most variables and functions should start with a lower case letter.
Constructor functions which must be used with the new prefix should start with a capital letter.
I don't find that using camelCase leads to any increased time debugging.