Answers for "javascript strip blank spaces"

2

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
1

remove blank space javascript

str.replaceAll(/\s/g,'')

.replace(/ /g,'')
Posted by: Guest on May-07-2021
11

remove whitespace javascript

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

how to remove empty spaces befiore string js

const greeting = '   Hello world!   ';

console.log(greeting);
// expected output: "   Hello world!   ";

console.log(greeting.trim());
//your boy siddhesh Kuakde
Posted by: Guest on April-02-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language