Project: Create a password generator application that generates a password based on criteria selections!
- Create an array for each criteria.
- Add criteria prompts for generate password button.
- Store prompt values in functions that perform validation.
- Call functions and store in variables.
- Create do while statement to iterates through each prompt answer and grabs character from the global variable if criteria is chosen.
- Do while runs until the chosen password length is reached.
- writePassword is called which calls the generatePassword function.
- Event listenter checks for click on generate password button.