Skip to content

Instantly share code, notes, and snippets.

@vchakoshy
Last active December 28, 2019 17:53
Show Gist options
  • Save vchakoshy/1370681acc6f7e30350439307fad7c92 to your computer and use it in GitHub Desktop.
Save vchakoshy/1370681acc6f7e30350439307fad7c92 to your computer and use it in GitHub Desktop.
iran national code javascript validation
// refrence http://www.aliarash.com/article/codemeli/codemeli.htm
function checkNationalCode(code) {
var L = code.length;
if (L < 8 || parseInt(code, 10) == 0) return false;
code = ('0000' + code).substr(L + 4 - 10);
if (parseInt(code.substr(3, 6), 10) == 0) return false;
var c = parseInt(code.substr(9, 1), 10);
var s = 0;
for (var i = 0; i < 9; i++)
s += parseInt(code.substr(i, 1), 10) * (10 - i);
s = s % 11;
return (s < 2 && c == s) || (s >= 2 && c == (11 - s));
return true;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment