how to remove empty space in js code example
Example 1: remove all spaces from a string javascript
.replace(/ /g,'')
Example 2: remove space from string javascript
var puzzle1=myTrim($("#puzzleinput").val());
function myTrim(x) {
return x.replace(/^\s+|\s+$/gm,'');
}