Javascript String is_empty()

Description

Javascript String is_empty()


// empty test//w  w w  .  jav  a  2s  . co m
String.prototype.is_empty=function(){
   return (this.search(/\S/)==-1)?true:false; 
}



PreviousNext

Related