Timeline for Shortest program that throws StackOverflow Error
Current License: CC BY-SA 3.0
10 events
| when toggle format | what | by | license | comment | |
|---|---|---|---|---|---|
| Nov 21, 2016 at 22:05 | comment | added | Paul J | Probably non-standard, throws in Chrome from the console. dir.apply(0,Array(1e7)); | |
| Jan 25, 2016 at 7:36 | comment | added | Patrick Roberts | new shortest in ES6: eval(...Array(9e9)) | |
| Apr 2, 2014 at 12:02 | comment | added | null | apply is a standard ECMAScript feature. There is nothing browser dependent. Unless you are talking about really old browsers, but this wouldn't work in hypothetical Netscape 2 with apply anyway, because Array class doesn't exist in Netscape 2. | |
| Feb 2, 2014 at 22:30 | comment | added | ThinkChaos | eval.apply(0,Array(1e6)) saves 3 chars, you can even go with 9e9 at no cost | |
| Mar 22, 2013 at 21:08 | history | edited | Shmiddty | CC BY-SA 3.0 | edited body |
| Jan 28, 2013 at 2:02 | history | edited | Shmiddty | CC BY-SA 3.0 | added 88 characters in body |
| Jan 23, 2013 at 13:30 | comment | added | Peter Taylor | MDN says that eval is the shortest. | |
| Jan 22, 2013 at 0:00 | review | First posts | |||
| Jan 23, 2013 at 8:11 | |||||
| Jan 21, 2013 at 23:51 | history | edited | Shmiddty | CC BY-SA 3.0 | added 199 characters in body |
| Jan 21, 2013 at 23:44 | history | answered | Shmiddty | CC BY-SA 3.0 |