javascript extract url from string code example
Example 1: javascript remove last character from string
var str = 'mystring';
// the character 'g' will be removed
str = str.slice(0, -1);
Example 2: javascript delete first character in string
var oldStr ="Hello";
var newStr = oldStr.substring(1); //remove first character "ello"