PW
Day 2: Password Generator
Generates secure random passwords with adjustable length and character sets. Built with arrays, string manipulation and Clipboard API.
16
Concepts used: arrays, random selection, string building, clipboard API, DOM manipulation.
How it works (short)
The script creates arrays for each enabled character type, optionally filters ambiguous characters, then randomly picks characters until the requested length is reached. It ensures a good distribution by guaranteeing at least one character from each selected set (if possible).