I am taking a parameter value from the URL which is as follows:
users%2F3
Where it should be users/3
How can I decode the value I am getting using Javascript?
I tried the following before:
var a = "users%2F3";
console.log(decodeURI(a));
But the log shows the same encoded value.