79187619

Date: 2024-11-14 06:38:27
Score: 1
Natty:
Report link

Validate password and confirm password

func isValidPassword(passworld: String, confirmPassworld: String) -> Bool{
    if confirmPassworld.lowercased() == passworld.lowercased(){
        return true
    }
    return false
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Praveen Kumar