Skip to content
Find file
Fetching contributors…
Cannot retrieve contributors at this time
17 lines (15 sloc) 629 Bytes

camelCase

In programming camelCase formatting for variable names looks like this:

var camelCase = "lower-case first word, capitalize each subsequent word";

PascalCase

Another form of this case, often refered to as PascalCase or just CamelCase, and differs by having each word in the variable capitalized like so:

var PascalCase = "upper-case every word";

snake_case

Another popular code case for variable naming called snake case involves sperating each word with underscores in this manner:

var snake_case = "lower-case everything, but separate words with underscores";
Something went wrong with that request. Please try again.