JavaScript встроенные функции, соответствующие слову и возвращают логические
String.prototype.isMatch = function(s){
return this.match(s)!==null
}
Anxious Anteater
String.prototype.isMatch = function(s){
return this.match(s)!==null
}