Javascript String contem(subtexto, ignoreCase = false)

Description

Javascript String contem(subtexto, ignoreCase = false)


String.prototype.contem = function(subtexto, ignoreCase = false){
  if(ignoreCase){
    return this.toUpperCase().indexOf(subtexto.toUpperCase()) !== -1;
  }//from  w ww . j  a v a2 s  .c  o m
  return 
}



PreviousNext

Related