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?

Share Improve this question asked Oct 5, 2015 at 18:52 jimm101jimm101 9981 gold badge15 silver badges37 bronze badges 3
  • Here's the relevant part of the spec, too – James Thorpe Commented Oct 5, 2015 at 18:54
  • 6 It says Map.length is 0. Not that the .length property of a new Map() is 0. 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
Add a ment  | 

1 Answer 1

Reset to default 15

Constructors 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