How should you write the code?

Posted by: Pdfprep Category: 70-480 Tags: , ,

DRAG DROP

You are developing an online shopping application that accepts credit cards for payment.

If the credit card number is invalid, the application must:

Generate an error

Assign "200" to the error number

Assign "Invalid" to the error description

You need to write the code that meets the requirements.

How should you write the code? (To answer, drag the appropriate code segment or segments to the correct location in the answer area. Each code segment may be used once, more than once, or not at all. You may need to drag the split bar between panes or scroll to view content.)

Answer:

Explanation:

Example: throw new Error(200, "x equals zero");

Reference: throw Statement (JavaScript)

Leave a Reply

Your email address will not be published.