Skip to content

Instantly share code, notes, and snippets.

@cyrilletuzi
Last active January 29, 2017 10:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cyrilletuzi/1ad9b5b45e0dbbc8aa7c93783c32e33e to your computer and use it in GitHub Desktop.
Save cyrilletuzi/1ad9b5b45e0dbbc8aa7c93783c32e33e to your computer and use it in GitHub Desktop.
someElement.textContent; /* Read */
someElement.textContent = `New content`; /* Write */
someElement.innerHTML; /* Read */
someElement.innerHTML = `New content`; /* Write */
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment