Goal: In the More branching video, we learned:
&&
and the ||
operatorPractice using these operators, and begin familiarizing yourself with the concepts of truthy and falsey by completing the exercises listed below.
if (blue === true && red === false || purple === true)
Make both sites check for any form fields the user has left blank. If you're checking multiple fields, don't pop up a dialog box for each one; that could get annoying if the user has left multiple fields blank! Instead, insert text next to the field the user has missed. Bootstrap has some nice styles for this - check out the Validation States section of their form documentation.
Create a celebrity dating webpage, where you enter information about yourself, and the page suggests which celebrity, fictional character, or public figure you would be most compatible with.
Make a political belief meter/quiz that asks questions about users' values, and determines how liberal, moderate, or conservative they are.