HTML Preparation code:
x
 
1
2
<div id='hello'>Hello, World!</div>
Script Preparation code:
 
let el = document.querySelector("#hello");
Tests:
  • innerText

     
    let i = 1000;
    const el = document.getElementById("hello");
    while (i--) {
        el.innerText = "Goodbye, cruel world!"
    }
  • innerHtml

     
    let i = 1000;
    const el = document.getElementById("hello");
    while (i--) {
        el.innerHtml = "Goodbye, cruel world!"
    }
  • textContent

     
    let i = 1000;
    const el = document.getElementById("hello");
    while (i--) {
        el.textContent = "Goodbye, cruel world!"
    }
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    innerText
    innerHtml
    textContent

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: one year ago)
Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/115.0
Firefox 115 on Windows
View result in a separate tab
Test name Executions per second
innerText 835.0 Ops/sec
innerHtml 312274.4 Ops/sec
textContent 1413.9 Ops/sec