admin管理员组文章数量:1349191
I'm adopting a large mish-mash of Javascript / jQuery code. I'd like to move it to Backbone.js but as an intermediary, I'm trying to namespace it so that it is sligthtly more modular.
I am wondering if there is a standard for namespaces for Javascript. I was going to do something like this:
var arc={
name:"Spock",
nav:function(){
//alert('name' + this.name);
obj=get_nav_obj();
get_to_api_v2(obj);
}
};
Should arc be capitalized? I tend to see capitalized but since rest of site is in Ruby, lowercase might be more consistent.
thx
I'm adopting a large mish-mash of Javascript / jQuery code. I'd like to move it to Backbone.js but as an intermediary, I'm trying to namespace it so that it is sligthtly more modular.
I am wondering if there is a standard for namespaces for Javascript. I was going to do something like this:
var arc={
name:"Spock",
nav:function(){
//alert('name' + this.name);
obj=get_nav_obj();
get_to_api_v2(obj);
}
};
Should arc be capitalized? I tend to see capitalized but since rest of site is in Ruby, lowercase might be more consistent.
thx
Share Improve this question edited Apr 5, 2012 at 15:36 timpone asked Apr 5, 2012 at 15:33 timponetimpone 20k36 gold badges128 silver badges224 bronze badges3 Answers
Reset to default 7In javascript, camelCase is used for regular identifiers. CAPSLOCKS is used for "constants". ProperCase is used for object constructors (indicating they should always be invoked using new
).
There is no absolute standard for captilization in Javascript. The over whelming majority of javascript though prefers camel casing. In short camel casing has the first letter of an identifier in lower case and then capitalizes the start of every subsequent word in a name. Here arc
is a single word and hence all lower is appropriate.
- http://en.wikipedia/wiki/CamelCase
This e down to personal preference. Our code best practice define that only function constructor have to be capitalised. For me the instance of an object is then lowercase.
Do google search for "javascript code guidleine" and see what other are doing
本文标签: naming conventionsis there a standard in namespace capitalization for JavascriptStack Overflow
版权声明:本文标题:naming conventions - is there a standard in namespace capitalization for Javascript - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743859952a2551551.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论