JavaScript Functions embutidas para combinar com a palavra e retornar booleano

String.prototype.isMatch = function(s){
   return this.match(s)!==null 
}
Anxious Anteater