Run details:
Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 YaBrowser/24.6.0.0 Safari/537.36
Yandex Browser 24
Mac OS X 10.15.7
Desktop
9 months ago
Test name Executions per second
Using regexp 17259794.0 Ops/sec
Using startsWith 22594900.0 Ops/sec
Script Preparation code:
x
 
var regexp = /^[iv]-/;
function test(value) {
    return value.startsWith('i-') || value.startsWith('v-');
}
Tests:
  • Using regexp

     
    regexp.test('i-dynamic-page');
  • Using startsWith

     
    test('i-dynamic-page');