Consider the following:
var foo = []
for (var i=0; i<100000; i++) { foo.push(97); }
var bar = String.fromCharCode.apply(String,foo)
Most browsers run it fine, but Safari throws: RangeError: Maximum call stack size exceeded.
Based on this, it appears that Safari's implementation of Function.prototype.apply is recursive. Is this true?
The MDN page linked above mentions potential issues with the JS engine's argument length limit, but that's clearly not the case here.
EDIT: I still don't think it's an argument length issue. Via this page and my own testing, it looks like Safari can handle up to 524197 arguments, which the above code does not exceed.
Bonus question: We can rewrite the above code to avoid using apply by explicitly calling String.fromCharCode on each element of the array and joining the results together, but I suspect that would be slower (for the browsers that support the large-input apply). What's the best way to assemble a large string from an array of integer character codes?
String.fromCharCodewould be recursive, wouldn't it? – Bergi Jan 14 at 22:30apply(String, foo), you're passing in 100,000 arguments (which is more than 65536). – Shmiddty Jan 14 at 22:56