admin管理员组文章数量:1347397
According to MDN:
Map.length
The value of the length property is 0.
What is the use case for this? I understand why Map.size
is semantically correct. But surely a Map.length
that almost always returns the "wrong" answer is a bad idea, especially if there's an oversight migrating code from ES5. Is there a way to force an error when this is used?
According to MDN:
Map.length
The value of the length property is 0.
What is the use case for this? I understand why Map.size
is semantically correct. But surely a Map.length
that almost always returns the "wrong" answer is a bad idea, especially if there's an oversight migrating code from ES5. Is there a way to force an error when this is used?
- Here's the relevant part of the spec, too – James Thorpe Commented Oct 5, 2015 at 18:54
-
6
It says
Map.length
is0
. Not that the.length
property of anew Map()
is0
. Try:var m = new Map(); console.log(m.length, m.size, Map.length);
. – gen_Eric Commented Oct 5, 2015 at 18:55 -
1
Still doesn't explain why
Map.length === 0
though. – Alexander O'Mara Commented Oct 5, 2015 at 18:57
1 Answer
Reset to default 15Constructors in JavaScript are regular functions, and the length
property of a function corresponds to the number of formal parameters expected by the function, which is 0 in the case of Map
.
Contrast this with RegExp.length
, which is 2, because the RegExp
constructor expects two parameters (pattern and flags).
本文标签: javascriptWhy does ES6 define maplength0Stack Overflow
版权声明:本文标题:javascript - Why does ES6 define map.length==0? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743836754a2547540.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论