If you want a line of JavaScript code to check whether a variable is less than 100, which of the following lines of code does NOT contain a logic error?

A. var <= 100
B. var < 100
C. var == 100
D. var > 100

B. var < 100