Expert Developer JavaScript Question:

What are the decodeURI() and encodeURI()?

Tweet Share WhatsApp

Answer:

EncodeURl() is used to convert URL into their hex coding. And DecodeURI() is used to convert the encoded URL back to normal.

<script>
var uri="my test.asp?name=ståle&car=saab";
document.write(encodeURI(uri)+ "
");
document.write(decodeURI(uri));
</script>

Output -
my%20test.asp?name=st%C3%A5le&car=saab
my test.asp?name=ståle&car=saab

Download Expert JavaScript Developer PDF Read All 150 Expert JavaScript Developer Questions
Previous QuestionNext Question
Explain the unshift() method in JavaScript?Enumerate the differences between Java and JavaScript?