What is the difference between these two way of initializing an array in modern javascript environment (in ES6 spec) ?
const arr1 = new Array(3);
const arr2 = Array(3);
They look same running in Chrome console, and arr2 is also the instance of Array.
arr2 instanceof Array;
// true