Skip to content

Instantly share code, notes, and snippets.

@ilhamgusti
Created December 16, 2019 10:52
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 ilhamgusti/c216696d9fd1fb0d72e352b189273560 to your computer and use it in GitHub Desktop.
Save ilhamgusti/c216696d9fd1fb0d72e352b189273560 to your computer and use it in GitHub Desktop.
Decoding HTML tag
function decodeHtml(str) {
//buat element baru
let d = document.createElement("div");
//masukan nilai
d.innerHTML = str;
//return nilai yang telah dimasukan
return typeof d.innerText !== 'undefined' ? d.innerText : d.textContent;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment