I would like to extend the Javascript built-in Array object by addind a new method: searchByRegexp
Basically the method will get a regexp as input and will return:
_ a string representing the element of the array that matches the regexp (if more than one match, the first one will be returned)
_ an empty string if none of the elements matches the regular expression.
Quick and dirty (fiddle for your fiddling pleasure):
However, you may wish to implement more general methods instead...
... which could then perform regex comparison like so: