Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jaredfolkins/ed8d82784e554f9697a18429a7c7c439 to your computer and use it in GitHub Desktop.
Save jaredfolkins/ed8d82784e554f9697a18429a7c7c439 to your computer and use it in GitHub Desktop.
// passes
total = 2147483647 * 2 + 1;
a = new Array(total);
console.log("total:" + total + " length:" + a.length);
// fails
total = 2147483647 * 2 + 2;
a = new Array(total);
console.log("total:" + total + " length:" + a.length);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment