JavaScript wbudowane funkcje w celu dopasowania słowa i powrót logiki
String.prototype.isMatch = function(s){
return this.match(s)!==null
}
Anxious Anteater
String.prototype.isMatch = function(s){
return this.match(s)!==null
}