Whenever you use search() on a string, the method does the following:
- It searches its calling string for the method’s regular expression argument.
- It returns the index of the first match, or
-1
if the RegExp pattern found no match.
Syntax of the search()
Method
search()
accepts a regular expression argument. Here is the syntax:
Example 1: Search for day
Try Editing It
Example 2: Search for a Case-Insensitive day
Pattern
Try Editing It