js check if text has a space code example
Example 1: js replace space with underscore
var string = "my name";
string = string.replace(/ /g,"_"); //returns my_name
Example 2: js remove space before string
var str = " Some text ";
str.trim();
// str = "Some text"