Skip to content

Instantly share code, notes, and snippets.

@temperatio
Forked from madrobby/README.md
Created May 17, 2011 21:59
Show Gist options
  • Save temperatio/977503 to your computer and use it in GitHub Desktop.
Save temperatio/977503 to your computer and use it in GitHub Desktop.
Luhn10 algorithm
function(
a, // credit card number (as string)
b, // placeholder
c, // placeholder
d, // placeholder
e // placeholder
){
b = a.length - 1, // index to check digit (last digit in number)
e = 0, // index to current digit from right
d = ~~a[b]; // value of check digit (~~ converts into a number, similiar to parseInt())
while(b--) { // iterate backwards from second-to-last digit
e++, // set current index from right
c = ~~a[b], // convert current digit to JavaScript number
d += // increase sum
e % 2 ? // if current index from right is even
[0,2,4,6,8,1,3,5,7,9][c] // use the sum of the digits of (2*digit), e.g. 9 => 9*2 => 18 => 1+8 => 9
: c // if current index is odd, just add the digit
}
return (
d % 10 == 0 // return true if the sum can be diveded by 10 without a remainder
// (the Luhn 10 algorithm is also called the "modulus 10" algorithm)
// learn more at http://en.wikipedia.org/wiki/Luhn_algorithm
)
}
var validCreditCard = function(a,b,c,d,e){b=a.length-1,e=0,d=~~a[b];while(b--){e++,c=~~a[b],d+=e%2?[0,2,4,6,8,1,3,5,7,9][c]:c};return(d%10==0)};
validCreditCard('378282246310005'); //=> true
validCreditCard('378282246310006'); //=> false
/*
VALID TEST NUMBERS
378282246310005 371449635398431 378734493671000
30569309025904 38520000023237 6011111111111117
6011000990139424 5555555555554444 5105105105105100
4111111111111111 4012888888881881 4222222222222
see http://en.wikipedia.org/wiki/Luhn_algorithm for details on the algorithm
*/
function(a,b,c,d,e){b=a.length-1,e=0,d=~~a[b];while(b--){e++,c=~~a[b],d+=e%2?[0,2,4,6,8,1,3,5,7,9][c]:c};return(d%10==0)}
Copyright (c) 2011 Thomas Fuchs, http://mir.aculo.us
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
{
"name": "Credit card number check with the Luhn10 algorithm",
"keywords": [ "creditcard", "luhn10" ]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment