Skip to content

Instantly share code, notes, and snippets.

@Mbaroudi
Forked from ShirtlessKirk/luhn.js
Last active August 29, 2015 14:21
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 Mbaroudi/072304f980ae1ec76e1a to your computer and use it in GitHub Desktop.
Save Mbaroudi/072304f980ae1ec76e1a to your computer and use it in GitHub Desktop.
/**
* Luhn algorithm in JavaScript: validate credit card number supplied as string of numbers
* @author ShirtlessKirk. Copyright (c) 2012.
* @license WTFPL (http://www.wtfpl.net/txt/copying)
*/
var luhnChk = (function (arr) {
return function (ccNum) {
var
len = ccNum.length,
bit = 1,
sum = 0,
val;
while (len) {
val = parseInt(ccNum.charAt(--len), 10);
sum += (bit ^= 1) ? arr[val] : val;
}
return sum && sum % 10 === 0;
};
}([0, 2, 4, 6, 8, 1, 3, 5, 7, 9]));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment