Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

e.g. please add html, css Credit Card Validation You're starting your own credit card business. You've come up with a new way to validate credit

image text in transcribed e.g.
image text in transcribed
please add html, css
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 following credit card numbers are valid 9999-9999-8888-0000 6666-6666-6666-1666 The following credit card numbers are invalid: a923-3211-9c01-1112 invalid characters 4444-4444-4444-4444 only one type of number 1111-1111-1111-1110 sufn 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. Elements Console Sources Network IC)top > validateCreditCard 9999777788880000) Filter Default lovels , true 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 t valid: false, number: a923-3211-9c01-1112, error: 'wronglength' 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 Please enter a credit card number and click VALIDATE Input Credit Card Number II VALIDATE Invalid credit card number - Last number must be an even numberl

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

List the advantages and disadvantages of the pay programs. page 505

Answered: 1 week ago