ZIP , postle validation #ZipCode validation

 Zip code validation

export const zipCodeValidation = val => {
    const regex = /^[0-9]+$/;
    return (regex.test(val) && val.toString().length === 6);
}

Comments

Popular posts from this blog

Image Preview Before upload image into ReactJs

Format mobile number to this format "(845) 963-2545" #mobileFormat