Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
It could very well be effectively an argument length limit; the arguments need to be pushed on the stack (maybe), after all. – Pointy Jan 14 at 22:21
Rather String.fromCharCode would be recursive, wouldn't it? – Bergi Jan 14 at 22:30
Nothing recursive is happening, when you call apply(String, foo), you're passing in 100,000 arguments (which is more than 65536). – Shmiddty Jan 14 at 22:56
I'm assuming the "call stack size" refers to the number of stack frames, not the size of one stack frame. Having too many arguments would just bloat the size of the top stack frame. – perimosocordiae Jan 14 at 23:21

1 Answer

up vote 5 down vote accepted

Apply has limits in some browsers in the length of arguments they accept. Webkit has an observed limit of 2^16, so if you have any need to have more you may want to follow a strategy to break up the arguments. If you read the details of the bug, it's an enforced limitation opposed to it being a problem arising from recursion (the bug in question also threw a similar RangeError).

Anyway, I believe your hunch about string concatenation was correct - join isn't necessarily as good as other methods. Here's a test against string concat where I first break up the arguments (similar to the strategy in the MDN discussion of apply), and it edges out join. Directly adding string together even edged out join, which I'm a little surprised by (in chrome, at least, I'd imagine they must just have some smart gc that can reuse the existing string to great effect, but can say for sure).

Edit - interestingly, it looks like Chrome is the odd one out in terms of how slow join is - for every other browser, it was much closer to concat in terms of performance or even better.

share|improve this answer
Ah, thanks for the link to the bug tracker. It would be nice if the error thrown was a bit more clear. – perimosocordiae Jan 14 at 23:28
Yeah, I agree. You have a point in that it seems incongruous to have 65536 be the limit for apply and for general functions to have up to 524197 arguments, but so it goes (you could try to add to the bug discussion to see if anyone involved in development has anything to add, I'd be curious myself). – Bubbles Jan 14 at 23:33

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.