What is unescape() function?

Submitted by: Administrator
► 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!
Submitted by:

Read Online Expert Developer JavaScript Job Interview Questions And Answers