Created
August 11, 2016 18:24
-
-
Save jaredfolkins/ed8d82784e554f9697a18429a7c7c439 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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