Answers for "javascript trim all spaces"

2

javascript remove all spaces from string

str = str.replace(/\s/g, '');
Posted by: Guest on July-22-2020
18

javascript remove all whitespaces

var spacesString= "Do I have spaces?"; 
var noSpacesString= myString.replace(/ /g,'');// "DoIhavespaces?"
Posted by: Guest on August-01-2019
1

javascript remove space from string

const removeSpaces = str => str.replace(/\s/g, '');

// Example
removeSpaces('hel lo wor ld');      // 'helloworld'
Posted by: Guest on July-03-2020
9

remove whitespace javascript

var str = "  Some text ";
str.trim();
Posted by: Guest on July-14-2020
1

js trim all spaces

var string = "     Hello World!     "
console.log(string);
//"     Hello World!     "
string2 = string.trim();
console.log(string2);
//"Hello  World!"
Posted by: Guest on August-02-2021
1

javascript remove all spaces

var string = "Javascript is fun";
var newString = string.replace(" ", "_");
console.log(newString); // Javascript_is_fun
Posted by: Guest on June-19-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language