generalFunction.js 168 Bytes
Newer Older
1
2
3
4
5
6
7
8
9
// password requirement
function checkPasswordReq(pwd) {
    if (pwd.length < 8) {
        isBest = false;
    } else {
        isBest = true;
    }
    return isBest
}