在javascript中,–>运算符是如何工作的?

How does the minus minus less than “-->” operator work in JavaScript?

本问题已经有最佳答案,请猛点这里访问。
1
2
3
4
while (max --> min)
{
    console.log(n);
}

我知道-->降低了价值,但是官方文件中记录的-->在哪里?


它是后减量运算符--,后面是大于运算符>。只是间距很奇怪。

1
while (max-- > min)

所以,虽然max的减量大于min的减量…