If Statements
Lesson 16Author : 🦒
Last Updated : October, 2017
if(isStudent && isSmart){ document.write("You are a student"); } else if(isStudent && !isSmart){ document.write("You are not a smart student"); } else { document.write("You are not a student and not smart"); } document.write("<br>");
// >, <, >=, <=, !=, == if(1 > 3){ document.write("number comparison was true"); } document.write("<br>");
if("dog" != "dog"){ document.write("string comparison was true"); }