11
Повернення рядка без косої риски
У мене є дві змінні: site1 = "www.somesite.com"; site2 = "www.somesite.com/"; Я хочу зробити щось подібне 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; } Як це зробити?