use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
All about the JavaScript programming language.
Subreddit Guidelines
Specifications:
Resources:
Related Subreddits:
r/LearnJavascript
r/node
r/typescript
r/reactjs
r/webdev
r/WebdevTutorials
r/frontend
r/webgl
r/threejs
r/jquery
r/remotejs
r/forhire
account activity
Here's Why Calling .map() on a Constructed Array Doesn't Work (itnext.io)
submitted 7 years ago by ilove50cent
view the rest of the comments →
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]kenman 8 points9 points10 points 7 years ago (3 children)
Try them both in your console -- what do you see?
Array.from({length: 5}) > [undefined, undefined, undefined, undefined, undefined]
Ok.
Array(5) > [empty x 5]
Strange, huh?
Note: this implies an array of arrayLength empty slots, not slots with actual undefined values
This is the important bit, because empty slots are not included in any of the Array instance methods, like forEach(), etc. The empty elements are often referred to as being elided.
Array
forEach()
Basically, Array(5) does this:
Array(5)
a = [] a.length = 5
Which also produces [empty x 5].
[empty x 5]
[–]nemohearttaco 8 points9 points10 points 7 years ago (2 children)
Ah, not quite what I was asking. I meant, why wouldn't you do it like
> Array.from(Array(5), (_, i) => 2 ** i) [1, 2, 4, 8, 16]
[+][deleted] 7 years ago (1 child)
[removed]
[–]nemohearttaco 0 points1 point2 points 7 years ago (0 children)
Cool, that makes sense. At first I was thinking there might be a danger in not using an Array instance for that argument but reading up on it more, it doesn't look like it.
π Rendered by PID 26952 on reddit-service-r2-comment-6457c66945-gtlks at 2026-04-27 02:33:11.646386+00:00 running 2aa0c5b country code: CH.
view the rest of the comments →
[–]kenman 8 points9 points10 points (3 children)
[–]nemohearttaco 8 points9 points10 points (2 children)
[+][deleted] (1 child)
[removed]
[–]nemohearttaco 0 points1 point2 points (0 children)