Answers for "how to remove space using js"

24

remove spaces in a string js

str.replace(/s+/g, '')
Posted by: Guest on April-29-2020
1

space remove in javascript

let string = "       Hello World!        ";
console.log(string.trim().split(" ").join("_"));

//$u7@y
Posted by: Guest on November-16-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language