//STYLE: Use descriptive function names

Always choose self-describing function names

Function names should start with a verb

Functions are supposed to do things.

And since verbs describe what is done, start your function name with the exact verb to describe what is going to happen.

Use camelCase for functions

camelCase has all the words grouped together. It has the first word lowercase, and the first letter of all remaining words capitalized.

Use CapsFirst and nouns for object constructors

Object constructors are for creating objects from a general template that have properties and methods attached to them.

By their nature, objects tend to be simple nouns.