Interview Preparation Programming Software Subjective
May 10, 2013

What is escape() function?

Detailed Explanation

escape() function is used to encode the string to convert it as portable string so that it can be sent across any network to any computer which supports ASCII characters.
This function encodes special characters, with the exception of @ * + - / . _

Syntax: escape(string1)

Where string1 is the string to be encoded.

Example:
<script>
document.write(escape(“Questions? Get from us!”));
</script>

Output: Questions%3F%20Get%20from%20us%21

Discussion (0)

No comments yet. Be the first to share your thoughts!

Share Your Thoughts
Feedback