views:

1924

answers:

3

I know there is a lot of controversy (maybe not controversy, but arguments at least) about which naming convention is the best for JavaScript.

How do you name your variables, functions, objects and such?

I'll leave my own thoughts on this out, as I haven't been doing JS for long (couple of years, only), and I just got a request to create a document with naming conventions to be used in our projects at work. So I've been looking (google-ing) around, and there are so many different opinions.

The books I've read on JS also use different naming conventions themselves, but they all agree on one bit: "Find what suits you, and stick to it." But now that I've read so much around, I found that I like some of the other methods a bit better than what I'm used to now.

+12  A: 

I follow Douglas Crockford's code conventions for javascript. I also use his JSLint tool to validate following those conventions.

Geoff
thanks for the URL
Amr ElGarhy
Nice resource. Thanks (:
peirix
+1  A: 

I think that besides some syntax limitations; the naming conventions reasoning are very much language independent. I mean, the arguments in favor of c_style_functions and JavaLikeCamelCase could equally well be used the opposite way, it's just that language users tend to follow the language authors.

having said that, i think most libraries tend to roughly follow a simplification of Java's CamelCase. I find Douglas Crockford advices tasteful enough for me.

Javier
A: 

That's an individual question that could depend on how you're working. Some people like to put the variable type at the begining of the variable, like "str_message". And some people like to use underscore between their words ("my_message") while others like to separate them with upper-case letters ("myMessage").

I'm often working with huge JavaScript libraries with other people, so functions and variables (except the private variables inside functions) got to start with the service's name to avoid conflicts, as "guestbook_message".

In short: english, lower-cased, well-organized variable and function names is preferable according to me. The names should describe their existence rather than being short.

Ivarska