Answers for "how to remove blank spaces and keep only one in string in javascript"

6

js method string remove extra spaces

const sentence = '    My string with a    lot   of Whitespace.  '.replace(/\s+/g, ' ').trim()

// 'My string with a lot of Whitespace.'
Posted by: Guest on January-04-2021
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 "how to remove blank spaces and keep only one in string in javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language