To remove spaces in JavaScript, you can try to run the following regular expression. It removes the spaces from a string −
Example
<html>
<head>
<script>
var str = "Welcome to Tutorialspoint";
document.write(str);
//Removing Spaces
document.write("<br>"+str.replace(/\s/g, ''));
</script>
</head>
<body>
</body>
</html>Output
