Test name | Executions per second |
---|---|
concat | 4855460.5 Ops/sec |
template string | 5493755.0 Ops/sec |
<!--your preparation HTML code goes here-->
const a = "hello "
for(i=0; i<10; i++){
a += "world"
}
let a = "hello "
for(i=0; i<10; i++){
a += "world"
}
let a
for(i=0; i<10; i++){
`${a} world`
}