var str = "hellow world n commen on man"
function regulars (str) {
var newStr = str.replace(/s+/g, "")
return newStr
}
regulars(str)

var str = "hellow world n commen on man"
function regulars (str) {
var newStr = str.replace(/s+/g, "")
return newStr
}
regulars(str)