Test name | Executions per second |
---|---|
regex | 3249923.0 Ops/sec |
string | 5265757.5 Ops/sec |
<!--your preparation HTML code goes here-->
var str = 'Hello {first} {last}. Your first name is {first} and last name is {last}.'
str = str.replaceAll(new RegExp('{first}', 'g'), 'John')
str = str.replaceAll(new RegExp('{last}', 'g'), 'Doe')
str = str.replaceAll('{first}', 'John')
str = str.replaceAll('{last}', 'Doe')