Java Script: Remove space in a String
How to remove spaces from a string in java script?
Add the following code snippet in your your java script code:
String.prototype.contains = function(it) { return this.indexOf(it) != -1; };
function removeSpace(text){
while(text.contains(' ')){
text=text.replace(' ','');
}
}
Add the following code snippet in your your java script code:
String.prototype.contains = function(it) { return this.indexOf(it) != -1; };
function removeSpace(text){
while(text.contains(' ')){
text=text.replace(' ','');
}
}
Comments
Post a Comment