Skip to content

Instantly share code, notes, and snippets.

@AleksandrChukhray
Created July 3, 2019 17:59
Show Gist options
  • Select an option

  • Save AleksandrChukhray/63433536e14a1bc31f615fc66298906b to your computer and use it in GitHub Desktop.

Select an option

Save AleksandrChukhray/63433536e14a1bc31f615fc66298906b to your computer and use it in GitHub Desktop.
const a = [1, 2]; // => [1,2]
const b = Array(10); // => [empty * 10];
const k = new Array(10); // => [empty *10];
const m = Array.prototype.constructor(10, 12, 13); // => [10, 12, 13];
const l = Array.prototype.constructor(10); // => [empty * 10];
const f = new Array(10, 12, 13); // => [10, 12, 13];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment