Skip to content

Latest commit

 

History

History
32 lines (25 loc) · 787 Bytes

File metadata and controls

32 lines (25 loc) · 787 Bytes
tags
recommended

Disallows the use of the Array constructor with a single argument.

new Array(n) and Array(n) are ambiguous and error-prone. With a single numeric argument the constructor creates a sparse array of that length, while with any other single argument it creates an array containing that one element. This makes the intent unclear to readers and is a common source of bugs.

Use an array literal when you want a list of elements, or Array.from({ length: n }) when you want an array of a given length.

Invalid:

const a = new Array(1);
const b = new Array(foo);
const c = new Array(...bar);

Valid:

const a = [1];
const b = Array.from({ length: 10 });
const c = new Array();
const d = new Array(1, 2, 3);