Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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

image text in transcribed
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 Number must be 16 digits, all of them must be numbers . You must have at least two different digits represented (all of the digits cannot be the same) The final digit must be even The sum of all the digits must be greater than 16 The folowing credit card numbers are valid 9999-9999-8888-9000 6666-6666-6666-1666 The following credit card numbers are invalid . a923-3211-9ce1-1112 invalid characters 4444-4444-4444-4444 only one type of number 1111-1111-1111-1110 sum less than 16 6666-6666-6666-6661 odd final number In order to run the function, you'll need to load javascript on an HTML page. From there, you will open your developer console to call the function. R Elements Console Sources Network top Finer Default levels > validateCreditcard'999977778888e880) 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 t valid: false, number: a923-3211-9c81-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 the expiration date

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions

Question

2. Define identity.

Answered: 1 week ago

Question

1. Identify three communication approaches to identity.

Answered: 1 week ago

Question

4. Describe phases of majority identity development.

Answered: 1 week ago