大小写差异 (javascript)
我注意到在我的代码中我使用了 .Length 和 .length (对于数组)。我现在在某些语言中,这不起作用。这里发生了什么?这些东西不区分大小写吗?
I noticed in my code that I used .Length and .length (for an array). I now in some languages, this doesn't work. What happened here? Are these things just not case sensitive?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
JavaScript 区分大小写。可能的一件事是有人在代码库中的 Array 原型中添加了一个名为 Length 的属性。
JavaScript is case sensitive. One thing that's possible is that someone added a property called Length to Array's prototype in your codebase.