Javascript 函数名称以小写字母开头有好处吗?
我注意到大多数 Javascript 方法(框架和自定义)都以小写字母开头。这有什么原因和/或好处吗?
I have noticed that most Javascript methods (framework and custom) start with lowercase letters. Is there a reason and/or benefit to this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
没有技术原因。它涉及可读性、传统以及与现有代码的相似性。一致性带来可读性,任意的分歧毫无理由地突出。
There's no technical reason. It's about readability, tradition, similarity to existing code. Consistency leads to readability, and arbitrary divergence stands out for no good reason.
在任何区分大小写的语言中,变量大小写保持一致尤其重要。但从下到上开始只是社区中发展起来的一个习惯用法。
In any case-sensitive language, it's especially important to be consistent about how you case variables. But starting with lower-vs-upper is just an idiom that's evolved in the community.