Skip to content

Instantly share code, notes, and snippets.

@leongaban
Created May 4, 2017 16:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save leongaban/4043c26c4ab0f5585169a1e8635d4775 to your computer and use it in GitHub Desktop.
Save leongaban/4043c26c4ab0f5585169a1e8635d4775 to your computer and use it in GitHub Desktop.
Validate Zipcode in Javascript
// http://stackoverflow.com/questions/160550/zip-code-us-postal-code-validation
const validZipcode = (zipcode) => zipcode.match(/(^\d{5}$)|(^\d{5}-\d{4}$)/);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment