remove spaces in a string code example
Example 1: regex to remove spaces
//..
return str.replace(/\s/g, '');
//..
Example 2: trimming spaces in string python
a = " yo! "
b = a.strip() # this will remove the white spaces that are leading and trailing