Created
August 21, 2013 07:48
-
-
Save carlosasin/6291451 to your computer and use it in GitHub Desktop.
JS - Check correct ZIP code using pattern
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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