Do you use NerdCaps?
By Pete Freitag
CamelCase may be a term that web developers are not as fimiliar with, as traditional Java or C developers may be, but none the less, is useful to know what it means. You may infact use CamelCase already when you code, but not even know it.
CamelCase is simply a way of creating variable names for compound words. When you capatolize each new word, for example firstName
, or MiddleName
you're using Camel Case. The first letter of the CamelCase word can either be upper case or lower case, if you use upper case, it's known as UpperCamelCase. If the first letter is lower case, then you call it lowerCamelCase.
The Wikipedia has lots more info including the history of CamelCase, as well as as list of CamelCase synonyms:
- BumpyCaps
- BumpyCase
- CamelCaps
- CamelHumpedWord
- CapWords in Python
- mixedCase (for lowerCamelCase) in Python
- ClCl (Capital-lower Capital-lower) and sometimes ClC
- HumpBackNotation
- InterCaps
- InternalCapitalization
- NerdCaps
- WordsStrungTogether or WordsRunTogether
My favorite is NerdCaps
Do you use NerdCaps? was first published on February 28, 2005.
Discuss / Follow me on Twitter ↯
Tweet Follow @pfreitagComments
http://livedocs.macromedia.com/wtg/public/coding_standards/style.html
Especially to prevent scope creep.
Now I'm not sure what to go by anymore. ...and my head still hurts.