JS: Array.of

By Xah Lee. Date: . Last updated: .

(new in JS: ECMAScript 2015)

Array.of(v1, v2, etc)

Return a new array with elements of v1, v2, etc.

Purpose of Array.of is to provide a functional form of the array literal expression for array.

console.log(Array.of(3, 4, "x"));
// [ 3, 4, "x" ]