I have two variables:
JavaScript
x
3
1
site1 = "www.somesite.com";
2
site2 = "www.somesite.com/";
3
I want to do something like this
JavaScript
1
7
1
function someFunction(site)
2
{
3
// If the var has a trailing slash (like site2),
4
// remove it and return the site without the trailing slash
5
return no_trailing_slash_url;
6
}
7
How do I do this?
Advertisement
Answer
Try this:
JavaScript
1
5
1
function someFunction(site)
2
{
3
return site.replace(//$/, "");
4
}
5