Test name | Executions per second |
---|---|
regex | 27437076.0 Ops/sec |
startswith | 2445347840.0 Ops/sec |
<!--your preparation HTML code goes here-->
let regex = /^hello.*$/,
str = 'aaaaaaaaaaaaaaaaaaaaaaaaahelloaaaaaaaaaaaaaaaaaaaa',
str2 = 'helloaaaaaaaaaaaaaaaaaaaaaaaaa'
regex.test(str)
regex.test(str2)
str.startsWith('hello')
str2.startsWith('hello')