如何获取 JavaScript 哈希表计数?
Possible Duplicate:
Length of Javascript Associative Array
hash_table = {a: 131, b: 222, c:313}
The length method is not working of course since it will be confused with a key.
So how do I do it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Object.keys
将以列表的形式返回对象中的所有键,然后使用 length 获取长度。示例:
请注意,这是 ECMA 5,可能在某些浏览器中不可用。请参阅 https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Object/keys 获取完整文档。
Object.keys
will return all the keys in the object as a list, then use length to get the length.example:
NOTE that this is ECMA 5 and may not be available in some browsers. see https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Object/keys for full document.