camelCase is a naming convention in which the first letter of each word in a compound word is capitalized, except for the first word.
i.e. newObject or longFunctionName().
Kebab case -- or kebab-case -- is a programming variable naming convention where a developer replaces the spaces between words with a dash.
i.e. new-object or long-function-name.
PascalCase is a naming convention in which the first letter of each word in a compound word is capitalized.
i.e. NewObject or LongFunctionName.