Answers

Question and Answer:

  Home  Expert JavaScript Developer

⟩ What is unescape() function?

► The unescape() function is used to decode the encoded string.

► Syntax : unescape(string1)

► Where string1 is the string to be decoded.

► Example :

<script>

document.write(unescape("Questions%3F%20Get%20from%20us%21"));

</script>

- Output :

Questions? Get from us!

 227 views

More Questions for you: