Script Preparation code:
AخA
 
var string = "6.12";
var regex = /.\d1$/;
Tests:
  • .test

     
    regex.test(String(string));
  • .match

     
    String(string).match(regex);
  • modulo

     
    Math.floor(string * 100 % 100 / 10) === 1;
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    .test
    .match
    modulo

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 3 years ago)
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36
Chrome 95 on Windows
View result in a separate tab
Test name Executions per second
.test 2570422.8 Ops/sec
.match 2589300.8 Ops/sec
modulo 2654073.5 Ops/sec