jquery remove spaces from string code example
Example 1: remove spaces in a string js
str.replace(/\s+/g, '')
Example 2: javascript remove all spaces from string
str = str.replace(/\s/g, '');
Example 3: trim space in jquery
var str = " Hello World! ";
alert(str.trim());
Example 4: js remove spaces
str = str.trim();