Tag: webdev
How to Validate Email Address in JavaScript ?
Here’s a sample JavaScript function that shows how to validate an email address . How to Validate Email Address in JavaScript ?
How to pass a function as parameter in JavaScript ?
There are times when you might want to pass a function as argument to another function in JavaScript. The function keyword can work in multiple ways. It can act as a operator and a statement as well. Additionally , you can create an expression as well. How to pass a function as parameter in JavaScript ? We can pass a function as a parameter to…