Skip to main content

Definitions by hpoom

camelCase 

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
camelCase by hpoom September 22, 2006