Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

I need help with javascript. Could you make it as bare basic as possible so I can go through and understand easier please Control Address

I need help with javascript. Could you make it as bare basic as possible so I can go through and understand easier please

image text in transcribedimage text in transcribed

Control Address Card Number |City CWv2/CVC Email Address Expiration Date First Name Last Name Name on Card State Data Type # Digits Related Function String String Various validateCredit Card String Number 3 validateControl String validateEmail Date validateDate String String String N/A validateState Number 5 validateControl Zip Add the following functions to the script.js file. Use the information provided with the function to assist with creating the function. Important Notes: Do not create any global variables in the JavaScript file Note: For this project, a global variable is any variable declared outside a function Do not alter the names or parameters for any of the provided functions Do not create any additional functions The validateForm() function is the only function that interacts directly with the form fields . For example: document.getElementById("LastName"); 0 testLength(value, length) Parameters o value - the value to test length - the required length of the value . For example: the CVV2/CVC value requires three (3) digits Process Test whether the value is the correct length Output . If the test passes, return true . If the test fails, return false . testNumber(value) Parameters value - the value to test Process Test whether the value represents a number . Output . If the test passes, return true . If the test fails, return false validateControl(control, name, length) Parameters o control - the control containing the value to test - For example: document.getElementById("Zip"); name - the proper name of the control . For example: "Zip" length - the required length of the control value Process Test whether the control's value is the correct length Call the testLength function If the test fails, Display an appropriate error message . Return false - Test whether the control's value represents a number Note: Only perform this test if the control's value is the correct length. Call the testNumber function If the test fails, Display an appropriate error message Return false Output If both tests pass, return true . If either test fails, return false O

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

Recommended Textbook for

Professional Visual Basic 6 Databases

Authors: Charles Williams

1st Edition

1861002025, 978-1861002020

More Books

Students also viewed these Databases questions

Question

What is DDL?

Answered: 1 week ago