Skip to content

Instantly share code, notes, and snippets.

@carlosasin
Created August 21, 2013 07:48
Show Gist options
  • Save carlosasin/6291451 to your computer and use it in GitHub Desktop.
Save carlosasin/6291451 to your computer and use it in GitHub Desktop.
JS - Check correct ZIP code using pattern
// Check if zip is correct (number number number number number)
// @input str string to check
// @return bool
function check_zip(str) {
var zip = /^[0-9]{5}$/;
if (str != undefined && str.match(zip)) return true;
else return false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment