Project III: Letting the User Know What's Wrong

This final piece of code is nothing groundbreaking—we will be using methods that we covered earlier in the chapter. If the world were a perfect place, then the user would have filled out the form properly. However, this isn't always the case, so now that we have made the necessary checks for missing or erroneous data, we need to pass on what we have found to the user. We use a simple if statement to accomplish this.

// Letting the user know what was missed

     if ((requiredFieldsErrorMessage) || (pullDownErrorMessage) || (emailErrorMessage) || 
(areaCodeErrorMessage) || (zipCodeErrorMessage)) { . . . ...

Get Essential JavaScript™ for Web Professionals, Second Edition now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.