I revised a simple program to add new elements to see if I could get the OR logical operator, and if statements working together, but it doesn't seem to work. Not sure what the problem is, but it's not displaying the else area of the program, it's over looked.
if (Jesus == "Jesus" || "jesus") won't work.
You have to think of it this way - you don't code if (variable == answer || answer2); Instead you have to compare variable to all options - if (variable == answer || variable == answer2);