One aspect of javascript that it\'s hard to find information on is casing practices. By casing practices, I mean what casing style (ie. camel-case, pascal-case, etc) should
I prefer camelCase for everything except for constructors. The reason (and I believe this is why Mr. Crockford suggested this as well) is because in other languages, such as Java, the convention is capitalize your classes, which is what constructors are used for.