最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

What is this ==- javascript operator? - Stack Overflow

programmeradmin3浏览0评论

I was stumbling around trying different conditions, when I discovered ==-, or ==+.

In a JS console, you can write:

var a = " ";

then the following is true

a == " ";

but this is false

a == "    ";

However, it will be true if you say:

a ==- "   ";

or

a ==+ "   ";

So what is this nifty ==- operator?

I was stumbling around trying different conditions, when I discovered ==-, or ==+.

In a JS console, you can write:

var a = " ";

then the following is true

a == " ";

but this is false

a == "    ";

However, it will be true if you say:

a ==- "   ";

or

a ==+ "   ";

So what is this nifty ==- operator?

Share Improve this question edited Sep 15, 2012 at 22:20 elclanrs 94.2k21 gold badges137 silver badges171 bronze badges asked Sep 15, 2012 at 22:19 user1674951user1674951 714 bronze badges 1
  • 2 Related: stackoverflow./questions/1642028/… – Waleed Khan Commented Sep 15, 2012 at 22:23
Add a ment  | 

3 Answers 3

Reset to default 10

They're not distinct operators.

Writing:

a ==- " ";

gets parsed as:

(a) == (-" ");

The same goes for ==+.

The expression evaluates to true because of Javascript's weird type conversion rules. Something like the following occurs:

  1. the unary - (or +) operators converts its operand to a number. If it's a blank string, the result of this conversion is 0.
  2. a == (-" ") is then equivalent to " " == 0. If types pared with == are different, one (possibly both), get converted to get a mon type. In this case, the " " on the left-hand side gets converted to 0 too.
  3. You end up paring 0 to 0, which yields true.

(The above is a rough example of how Javascript might e to this result, the actual rules are buried in the ECMAScript specification. You can use the === operator instead to prevent the conversions and get false if the types of the pared objects are different.)

It's simply a == followed by a - (or +).

(In the following I write "<four spaces>" to mean the string consisting of four spaces.)

That is, if you do " " ==- "<four spaces>", you pare " " to -"<four spaces>". -"<four spaces>" evaluates to 0, since applying the minus converts to integer. Thus, you actually do " " == 0, which is true, since it converts the " " to an integer for the parison.

" " == "<four spaces>" is false, however, as you're paring two different strings.

That is NOT an operator. You get those results because - and + is casting the string to a number, in this case, an empty string casts to the number 0 which is then interpreted as false, plus the equals operator == will cause some trouble with parison and casting, that's why it's remended to always use the === operator and you'll get the results you're after:

console.log(a === ' '); // true
console.log(a === '   '); // false
console.log(a === -'   '); // false
console.log(a === +'   '); // false
发布评论

评论列表(0)

  1. 暂无评论