Interviewer And Interviewee Guide

Expert Developer JavaScript Interview Question:

What is decodeURI() function?

Submitted by: Administrator
► The decodeURI() function is used to decode the URI.
► Syntax :
decodeURI(uri)
Where uri is URI to be decoded
► For example :
<script>
var uri = "EmpDetails.asp?Emp=årpit&mode=edit";
document.write(encodeURI(uri) + "
");
document.write(decodeURI(uri) + "
");
</script>
► Output :
EmpDetails.asp?Emp=%C3%A5&mode=edit
EmpDetails.asp?Emp=årpit&mode=edit.
Submitted by:

Read Online Expert Developer JavaScript Job Interview Questions And Answers
Copyright 2007-2024 by Interview Questions Answers .ORG All Rights Reserved.
https://InterviewQuestionsAnswers.ORG.