remove last space from string javascript 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: 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, '');

// Example
removeSpaces('hel lo wor ld');      // 'helloworld'

Example 5: javascript trim spaces

value = value.trim();

Example 6: javascript trim

var str=" I have outer spaces ";
var cleanStr=str.trim();//trim() returns string with outer spaces removed