[JavaScript] textContent / innerHTML

both are for changing content but there are differences

Β·

1 min read

Common grounds

  • textContent / innerHTML both works to change content as below.

image.png

Differences

  • textContent : it only change the content
  • innerHTML : it can change the content and appearance as well.

image.png

Β