Skip to content

Instantly share code, notes, and snippets.

@danhollick
Last active February 4, 2020 10:12
Show Gist options
  • Save danhollick/563862c26f8af8aade8040ab0850cf5c to your computer and use it in GitHub Desktop.
Save danhollick/563862c26f8af8aade8040ab0850cf5c to your computer and use it in GitHub Desktop.
Change text
function changeText(id, text) {
const element = document.getElementById(id)
element.textContent = text
return element
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment