Bit Shift (bitshift)'s status on Friday, 28-Sep-12 17:55:14 UTC

  1. @greenenchilada `if ("var age = 18")` just says "does this string I've put in here exist?" -- what you actually want is `if (age < 18)` (var is only used when you first create the variable, and you want to be checking if the age is less than 18, rather than if it's exactly 18)

    Friday, 28-Sep-12 17:55:14 UTC from web in context