15 lines
267 B
HTML
15 lines
267 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<body>
|
|
<script>
|
|
function decodeHtml(html) {
|
|
if (!html) return '';
|
|
const txt = document.createElement("textarea");
|
|
txt.innerHTML = html;
|
|
return txt.value;
|
|
}
|
|
console.log(decodeHtml("jetzt wird's schwerer"));
|
|
</script>
|
|
</body>
|
|
</html>
|