Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Acceptable Password I by wbl4126
function isAcceptablePassword(password: string): boolean {
return password.length > 6;
}
June 19, 2020