How to Remove Spaces From string

This is javascript function to remove spaces in given string

function removeSpaces(string)
{
return string.split(' ').join('');
}



Comments

Popular posts from this blog

Mysql to CSV

Secure server with Firewalld

Setup K8s cluster via kubeadm