Split Performance (v2)

Revision 2 of this benchmark created on


Test runner

Ready to run.

Testing in
TestOps/sec
Split
var args = 'now later today tomorrow'.split(' ');
console.log(args[1]);
ready
Array
var args = ['now', 'later', 'today', 'tomorrow'];
console.log(args[1]);
ready

Revisions

You can edit these tests or add more tests to this page by appending /edit to the URL.