Validates a credit card number based on the information given at
http://www.mint.com/blog/trends/credit-card-code-01202011/
// Decreased from 139 to 124 chars =) // Also, now supports string coercion
function validCard(a,b,c,d){a+='';c=0;for(b=a.length;b--;){d=b%2?a[b]:a[b]*2;if(d>9)d=0|d/10+d%10;c+=+d}return c===c&&!c%10}
validCard('No Way I'm Putting Mine Here!!!') // returns true or false
// When testing, doesn't seem to work for any of my cards but neither did the algorithm I forked from. Oh well =/
Updated re: https://gist.github.com/993370#gistcomment-60299