Pergunta

CSS uses hyphens to separate words:

.class_name{background-color:#000;}

Javascript uses lowerUpper formatting:

document.getElementById("my_div").style.backgroundColor

But what is the lowerUpper formatting syntax called?

I read it somewhere, in the context of "remember to _ the style property because javascript doesn't use hyphens".

Thanks

Foi útil?

Solução

It's called CamelCase. Take a look at wikipedia for more information: http://en.wikipedia.org/wiki/CamelCase

Outras dicas

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

JSLint can be too radical and restrictive for many developers, then JSHint can be better choice.

There is also the Online Javascript Beautifier which seems to use all the Douglas Crockford conventions to format the code. It does not address the naming of variables and functions though.

Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top