This is a way of writing variable names and function names in a programming language. Programming languages do not allow spaces in variable or function names, but using camelCase these words are still readable and it is marked improvement on _ notation
function myFunctionName()
var myVariableName;
var camelCase = true;
class cMyClassName
53👍 9👎