Run details:
Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36
Chrome 94
Mac OS X 10.15.7
Desktop
3 years ago
Test name Executions per second
String() 39727.4 Ops/sec
.toString() 401279.0 Ops/sec
template string 811185.1 Ops/sec
concat with string 762233.1 Ops/sec
Tests:
  • String()

    AخA
     
    let nums = [];
    for(let i = 0; i < 100; ++i) {
      nums.push(String(i));
    }
  • .toString()

     
    let nums = [];
    for(let i = 0; i < 100; ++i) {
      nums.push(i.toString());
    }
  • template string

     
    let nums = [];
    for(let i = 0; i < 100; ++i) {
      nums.push(`${i}`);
    }
  • concat with string

     
    let nums = [];
    for(let i = 0; i < 100; ++i) {
      nums.push(i + "");
    }