githubcrce / PasswordGenerator

MIT License
0 stars 2 forks source link

Handle Generate Password in App.js #12

Open warrenferns opened 11 months ago

warrenferns commented 11 months ago

This issue should be resolved by creating handleGeneratePassword that:

if not includeUpperCase and not includeLowerCase and not includeNumbers and not includeSymbols then notify error

else let characterList = "" if includeNumbers is true characterList = characterList + numbers if includeUpperCase is true characterList = characterList + upperCaseLetters . . . Set Password createPassword pass characterList notify

rituraj12797 commented 11 months ago

can i work on this one