getCountsOfPIN method

int getCountsOfPIN()

Implementation

int getCountsOfPIN(){
  if(firstPIN.length < 4){
    return firstPIN.length;
  }
  else {
    return secondPIN.length;
  }
}