A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://www.geeksforgeeks.org/javascript/greater-than-comparison-operator-in-javascript/ below:

Greater than(>) Comparison Operator in JavaScript

Greater than(>) Comparison Operator in JavaScript

Last Updated : 23 Jul, 2025

JavaScript Greater Than(>) Operator is used to compare two operands and return true if the left operand has a higher value than the right operator.

Syntax:

a>b

Example 1: In this example, we will compare String, Number, and Boolean using Greater 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.

true
false
true

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

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

Output: Similar to the previous example the data type is converted to number and comparison is performed

false
true
false
false

Supported Browsers:

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



RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4