Expert Developer JavaScript Question: Download Expert JavaScript Developer PDF

What is unescape() function?

Tweet Share WhatsApp

Answer:

► 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!

Download Expert JavaScript Developer PDF Read All 150 Expert JavaScript Developer Questions
Previous QuestionNext Question
How are JavaScript and ECMA Script related?What is NaN in JavaScript?