Live data from Hacker News

Avoid Using New Array() in JavaScript

yogeshchauhan.com

1–4 of 4 posts

Re: Avoid Using New Array() in JavaScript

#4
There is nothing wrong with using new Array() to construct array of known capacity. By default, I think JS literal arrays will have a capacity of 4, so especially if you know you will have less than four elements, or a non power of two number of elements, this can be seen as a micro-optimization. `bluebird` uses new Array() extensively, e.g.

https://github.com/petkaantonov/bluebird/blob/12154adb501660...