JavaScript Regular Expressions
Regular expressions are objects in JavaScript. For example, if you have an input field that should only
allow characters a-z (lower and upper case) and numerical digits, you could use regular expressions to
do the input validation as follows:
[Read More]