Movatterモバイル変換


[0]ホーム

URL:


  1. 面向开发者的 Web 技术
  2. JavaScript
  3. JavaScript 参考
  4. 表达式和运算符
  5. 大于(>)

此页面由社区从英文翻译而来。了解更多并加入 MDN Web Docs 社区。

View in EnglishAlways switch to English

大于(>)

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since ⁨2015年7月⁩.

大于运算符(>)在左操作数大于右操作数时返回true,否则返回false

尝试一下

console.log(5 > 3);// Expected output: trueconsole.log(3 > 3);// Expected output: false// Compare bigint to numberconsole.log(3n > 5);// Expected output: falseconsole.log("ab" > "aa");// Expected output: true

语法

js
x > y

描述

操作数比较使用与小于运算符相同的算法,只是两个操作数交换了。

示例

字符串与字符串比较

js
console.log("a" > "b"); // falseconsole.log("a" > "a"); // falseconsole.log("a" > "3"); // true

字符串与数值比较

js
console.log("5" > 3); // trueconsole.log("3" > 3); // falseconsole.log("3" > 5); // falseconsole.log("hello" > 5); // falseconsole.log(5 > "hello"); // falseconsole.log("5" > 3n); // trueconsole.log("3" > 5n); // false

数值与数值比较

js
console.log(5 > 3); // trueconsole.log(3 > 3); // falseconsole.log(3 > 5); // false

数值与大整型比较

js
console.log(5n > 3); // trueconsole.log(3 > 5n); // false

比较 Boolean、null、undefined 和 NaN

js
console.log(true > false); // trueconsole.log(false > true); // falseconsole.log(true > 0); // trueconsole.log(true > 1); // falseconsole.log(null > 0); // falseconsole.log(1 > null); // trueconsole.log(undefined > 3); // falseconsole.log(3 > undefined); // falseconsole.log(3 > NaN); // falseconsole.log(NaN > 3); // false

规范

Specification
ECMAScript® 2026 Language Specification
# sec-relational-operators

浏览器兼容性

参见

Help improve MDN

Learn how to contribute

This page was last modified on byMDN contributors.


[8]ページ先頭

©2009-2025 Movatter.jp