In this section, you will study the use of test() method. The test() method returns true if a pattern exists within a string, otherwise it returns false. This method searches a string for a specified value.
JavaScript test() method
In this section, you will study the use of test() method. The test() method returns true if a pattern exists within a string, otherwise it returns false. This method searches a string for a specified value. You can see in the given example, we have used RegExp in order to search the specified pattern in the string. The expression pattern.test(st1) tests whether the specified pattern('@') exists in the Email ID or not.
Here is the code:
<html>
|
Output will be displayed as: