09 / 25
js

Password Validation

input.length >= 8;
/[A-Z]/.test(input);
/[a-z]/.test(input);
/[0-9]/.test(input);
/[!@#$%^&*]/.test(input);