Script Preparation code:
AخA
 
var s1 = "foo|bar|test";
Tests:
  • Array.split

     
    var n1 = s1.split('|');
    console.log(n1.pop())
  • Substring

     
    var pip = s1.lastIndexOf('|');
    console.log(s1.substring(pip + 1));
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    Array.split
    Substring

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 4 years ago)
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.183 Safari/537.36
Chrome 86 on Windows
View result in a separate tab
Test name Executions per second
Array.split 57015.2 Ops/sec
Substring 69869.9 Ops/sec