Category: Math
Tests whether a value is less than another value.
Your apps will sometimes need to check the relative size of two values, and then possibly perform some specific action using an if, if-else, or while block. < returns true if the value on the left-hand side of the opertor is strictly less than the value on the right-hand side of the operator.
// Basic numeric less than check. var x = 5; var y = 4; console.log(x < 4); console.log(x < y);
Example: Comparing "apples" the "Apples" Basic string less than check. Case matters for string comparison.
// Basic string equality check. Case matters for string comparison. var x = "apples"; var y = "Apples"; console.log(x < "bananas"); console.log(x < y);
Example: 2 is less than "12"? Numeric string to number conversion is automatic in App Lab.
// Numeric string to number conversion is automatic in App Lab. var x = 2; var y = "12"; if(x < y) { console.log("less"); } else { console.log("not less"); }
___ < ___
Name | Type | Required? | Description |
---|---|---|---|
___ | any | Yes | The operands can be a number/string/boolean, or a variable containing a number/string/boolean, or the number/string/boolean returned by a function, or the number/string/boolean result of the evaluation of an expression. |
Boolean true or false
Found a bug in the documentation? Let us know at documentation@code.org
__ < __
Boolean (true or false)
Found a bug in the documentation? Let us know at documentation@code.org