showing results for - "javascript inbuilt funcctions to match the word and return boolean"
Carly
07 Jul 2018
1String.prototype.isMatch = function(s){
2   return this.match(s)!==null 
3}