Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicates:
Is there a difference between !== and != in PHP?
Javascript === vs == : Does it matter which “equal” operator I use?

In some cases when checking for not equal, I saw using != and in some places i saw !==. Is there any difference in that?

Example:

var x = 10;   

if (x != 10) {   
    //...
}

and

if (x !== 10) {    
    //...
}
share|improve this question

marked as duplicate by Felix Kling, Marek Karbarz, svens, Sarfraz, Mark Jul 2 '11 at 20:22

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

6 Answers

up vote 6 down vote accepted

== compares only the value and converts between types to find an equality, === compares the types as well.

share|improve this answer
  • == means equal
  • === means identical

1 is equal to "1", but not identical, because 1 is an integer and "1" is a string.

share|improve this answer

They are different in terms of strictness of comparison. !== compares variable types in addition to values.

share|improve this answer

!== will also check the type (int, string, etc.) while != doesn't.

For more information, see the PHP comparison operator documentation.

share|improve this answer

The !== is strict not equal: Difference between == and === in JavaScript

share|improve this answer

The difference is that == (and !=) compare only the value, === (and !==) compare the value and the type.

For example
"1" == 1 returns true
"1" === 1 returns false, because one is a string and the other is an integer

Hope this helps. Cheers

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.