Answers for "javascript replace whitespace with nothing"

3

replace white spaces javascript

const name = 'Hi my name is Flavio'
name.replace(/\s/g, '') //HimynameisFlavio
Posted by: Guest on April-27-2020
23

javascript remove all whitespaces

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

Code answers related to "javascript replace whitespace with nothing"

Code answers related to "Javascript"

Browse Popular Code Answers by Language