Skip to content

Instantly share code, notes, and snippets.

@mustmodify
Created January 6, 2016 20:37
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 mustmodify/d5b337c790e0934cf08d to your computer and use it in GitHub Desktop.
Save mustmodify/d5b337c790e0934cf08d to your computer and use it in GitHub Desktop.
function cVerify(c) {
var valid = 'n';
if ((!isNaN(c[0])) && (!isNaN(c[1])) && (!isNaN(c[2]))) {valid = 'y'}
return valid;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment