Để xóa khoảng trắng trong JavaScript, bạn có thể thử chạy biểu thức chính quy sau. Nó xóa các khoảng trắng khỏi một chuỗi -
Ví dụ
<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> Đầu ra