Why is the value of
(new Array(2)).map(function (x, i, a) { return i })
[undefined, undefined] instead of [0, 1]?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
new Array(2)generates a sparse array – with no values, but of length 2. It is equivalent to[,,].Now, Array’s
.map()method is specified to leave out uninitialised/deleted indices, so you just get back another empty array.Related question on what you want to do: How to write List/Array comprehensions in JavaScript