generalFunction.js 152 Bytes
Newer Older
Rosanny Sihombing's avatar
Rosanny Sihombing committed
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
}