Exercise: Password Checker
Explore how to create a JavaScript function that uses regular expressions to verify if a password is strong. Understand how to check for length, uppercase and lowercase letters, digits, and special characters to ensure password safety.
We'll cover the following...
We'll cover the following...
Task
A software engineer is busy developing an app for a startup. Currently, she is working on the login and sign up screen. An integral part of this screen is ensuring that the user selects a strong password. Because she is already very busy, you have been assigned to implement a function that ...