Answers for "js check if text has a space"

14

js replace space with underscore

var string = "my name";
string = string.replace(/ /g,"_"); //returns my_name
Posted by: Guest on April-24-2020
10

js remove space before string

var str = "  Some text ";
str.trim();
// str = "Some text"
Posted by: Guest on May-27-2020

Code answers related to "js check if text has a space"

Code answers related to "Javascript"

Browse Popular Code Answers by Language