-
-
Save avimar/e7421f96357bf06acc31d952c7baf84e to your computer and use it in GitHub Desktop.
Checks the validity of a given Isracard credit card number
This file contains 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
/*License: MIT*/ | |
function isracardCheck(num) {//algorithm explanation: https://web.archive.org/web/20140227235803/http://povolotski.me/2013/09/24/isracard-credit-card-number-validation-2/ | |
if(typeof num !== 'number') num=''+num; | |
if(num.length < 8 || num.length > 9) return false; | |
var sum=0; | |
num.split('').forEach(function(val,key){ | |
sum+=parseInt(val,10)*(num.length-key); | |
}) | |
return sum % 11 == 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
A bit more modern code.