Skip to content

Instantly share code, notes, and snippets.

@gioiliop7
Created January 5, 2023 15:52
Show Gist options
  • Select an option

  • Save gioiliop7/aae5a33da9e7b9b18c67034e22be0c8d to your computer and use it in GitHub Desktop.

Select an option

Save gioiliop7/aae5a33da9e7b9b18c67034e22be0c8d to your computer and use it in GitHub Desktop.
[JS] Validate Greek Vat Num
function checkAFM(afm) {
afm = afm.split("").reverse().join("");
let Num1 = 0;
for (var iDigit = 1; iDigit <= 8; iDigit++) {
Num1 += afm.charAt(iDigit) << iDigit;
}
return (Num1 % 11) % 10 == afm.charAt(0);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment