Saturday, November 16, 2024
Google search engine
HomeLanguagesJavascriptLess Than(<) Comparison Operator in JavaScript

Less Than(<) Comparison Operator in JavaScript

JavaScript Less Than(<) Operator is used to compare two operands and return true if the left operand has a lesser value than the right operator. The values are converted to equal primitive types before conversion If both the values are strings the comparison is done on the basis of their Unicode. Boolean values like true and false are converted to 1 and 0 respectively.

Syntax: 

a<b

Example 1: In this example, we will compare String, Number, and Boolean using Less Than Operator.

Javascript




console.log("3"<2);
console.log("2"<3);
console.log(true<false);


Output: The String and Boolean values are converted to Numbers and compared.

false
true
false

Example 2: In this example, we will compare BigInt, and other data types Less Than Operator.

Javascript




console.log(2<2n);
console.log(5n<4);
console.log(undefined<null);
console.log(null<undefined)


Output: Similar to the previous example, the values are first converted to numbers and then compared.

false
false
false
false

Supported Browsers:

  • Chrome
  • Edge
  • Firefox
  • Opera
  • Safari

We have a complete list of JavaScript Comparison Operators, to check those please go through, the JavaScript Comparison Operator article

Whether you’re preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, neveropen Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we’ve already empowered, and we’re here to do the same for you. Don’t miss out – check it out now!

RELATED ARTICLES

Most Popular

Recent Comments