Skip to content

Latest commit

 

History

History
36 lines (18 loc) · 1.17 KB

File metadata and controls

36 lines (18 loc) · 1.17 KB

RANDOM PASSWORD GENERATOR

Description

  • The motivation behind this project was to create a simple and safe way for users to create secure passwords
  • I wanted to build this to truly understand how to utilize Math.random and how to manipulate strings and arrays
  • This app will allow users to simply set peramiters on a password and the have a randomly generated password presented to them
  • Develping this app has taught me how to break down a javascript file, understanding were variables are declared and were functions are called. ​

Usage

Upon page load, users are presented with the following screen​

page load

Then, the user is asked to provide a character length for their password

character length request window alert

The user then must choose yes or no for the following to be included in the passowrd: lowercase letters, uppercase letters, numeric characters, and special character

boolean choices

The user is then presented with a password containing all of the requested choices

final password output# DU-Week3-PasswordGenerator