▲ | vanderZwan 3 days ago | |||||||||||||||||||||||||
Oh duh, yeah using spread syntax for function calls is definitely limited to fewer than 150,000 arguments in any browser that I know of. Don't expect everyone to know that, but I sure did, stupid that I didn't spot that. Thanks for pointing it out! (funny enough I tend to use for(let i = 0; i < arr.length; i++) loops most of the time anyway because the iterator protocol adds too much overhead for my tastes, so I wasn't likely to ever bump into this in the first place) | ||||||||||||||||||||||||||
▲ | akx 2 days ago | parent [-] | |||||||||||||||||||||||||
I would imagine browsers optimize the iterator protocol away for arrays. At least on https://jsben.ch/iJFZ4 for..of is a smidge faster than an old-school loop. | ||||||||||||||||||||||||||
|