Skip to content

Instantly share code, notes, and snippets.

@jtribble
Last active September 23, 2015 02:21
Show Gist options
  • Save jtribble/45cecaa62465f61a0891 to your computer and use it in GitHub Desktop.
Save jtribble/45cecaa62465f61a0891 to your computer and use it in GitHub Desktop.
Is string a valid zip code
/**
* Is string a valid zip code?
*
* @param {string} str
* @return {boolean}
*/
var isValidZip = function (str) {
return /(^\d{5}$)|(^\d{5}-\d{4}$)/.test(str);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment