remove last space from string javascript code example
Example 1: javascript remove last character from string
var str = 'mystring';
str = str.slice(0, -1);
Example 2: js remove last character from string
let str = "Hello Worlds";
str = str.slice(0, -1);
Example 3: remove last character from string javascript
let str = "12345.00";
str = str.substring(0, str.length - 1);
console.log(str);
Example 4: javascript remove space from string
const removeSpaces = str => str.replace(/\s/g, '');
removeSpaces('hel lo wor ld');
Example 5: javascript trim spaces
value = value.trim();
Example 6: javascript trim
var str=" I have outer spaces ";
var cleanStr=str.trim();