Perguntas com a marcação «trailing-slash»

196
Retornar string sem barra final

Eu tenho duas variáveis: site1 = "www.somesite.com"; site2 = "www.somesite.com/"; Eu quero fazer algo assim function someFunction(site) { // If the var has a trailing slash (like site2), // remove it and return the site without the trailing slash return no_trailing_slash_url; } Como eu...