Expert Developer JavaScript Question:
Download Job Interview Questions and Answers PDF
What is unescape() function?
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!
► 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 Interview Questions And Answers
PDF
Previous Question | Next Question |
How are JavaScript and ECMA Script related? | What is NaN in JavaScript? |