Homework: Credit Card Validation

You're starting your own credit card business. You've come up with a new way to validate credit cards with a simple function called validateCreditCard that returns true or false.

Here are the rules for a valid number:

The following credit card numbers are valid:

The following credit card numbers are invalid:

In order to run the function, you'll need to load javascript on an HTML page. Click here for instructions on how to do that. From there, you will open your developer console to call the function.

Hint: Remove the dashed from the input string before checking if the input credit card number is valid.



Bonus: Return an object indicating whether the credit card is valid, and if not, what the error is
{ valid: true, number: 'a923-3211-9c01-1112' }
{ valid: false, number: 'a923-3211-9c01-1112', error: ‘wrong_length’ }

Double Bonus: Make your credit card scheme even more advanced! What are the rules, and what are some numbers that pass or fail? Ideas: check expiration date! Check out the Luhn Algorithm for inspiration.