Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

how remove the spaces from the string, then return the resultant string

function noSpace(x){
  return x.replace(/s/g, '');
}
 
PREVIOUS NEXT
Tagged: #remove #spaces #return #resultant #string
ADD COMMENT
Topic
Name
2+8 =