b. var b = 82; if (b++ === 83){ alert("given condition for variable b is true"); } c. var c = 12; if (c++ === 13){ alert("condition 1 is true"); } if (c === 13){ alert("condition 2 is true"); } if (++c < 14){ alert( "condition 3 is true"); } if(c===1 4){ alert( "condition 4 is true"); } d. var materialCost=2 0000; var laborCost=2 000; var totalCost=m aterialCost + laborCost; if (totalCost===l aborCost + materialCost){ alert( "The cost equals"); } e. if (true){ alert( "True"); } if (false){ alert( "False"); }
f. if("car" "cat"){ alert( "car is smaller than cat"); }