Convert HTML entity code script

Sometimes when dealing with API response we get HTML entity tag as well. For eg: In order to fix this kind of issue we can use a simple javascript snippet. function convertHTMLEntity(text){ const span = document.createElement('span'); return text...
Read More ⟶