Answers for "javascript get rid of leading spaces"

3

remove extra space in string js

newString = string.replace(/\s+/g,' ').trim();
Posted by: Guest on May-28-2020
4

how to remove trailing space in string js

let string = "        Your Text           ";
string = string.trim(); // "Your Text"
// This gets rid of both starting and trailing whitespace
Posted by: Guest on June-02-2021

Code answers related to "javascript get rid of leading spaces"

Code answers related to "Javascript"

Browse Popular Code Answers by Language