I once encountered an operator "===". But I don remember what it was.. or where do we use it .. or is there any such a kind of operator ? where is it used ??
|
|
|
In PHP, JavaScript, ECMAScript, ActionScript 3.0, and a number of other similar, dynamic languages, there are two types of equality checks: == (non-strict equality) and === (strict equality). To show an example:
Basically, whenever you use ==, you risk automatic type conversions. Using === ensures that the values are logically equal AND the types of the objects are also equal. |
|||||||||||||
|
|
In JavaScript,
There is also a corresponding strict inequality operator, |
|||
|
|
|
Its used in JavaScript, PHP and may be more (which I may not have encountered yet!), it is used to compare if both the compared things are of same object type as well as have same value. |
|||||||
|
|
Example
|
|||
|
|
|
It usually tests if two objects are the same. ie. not if they have the same value(s) but if they really are the same object. |
|||
|
|
|
=== is equality, at least in PHP Here is a link that helps explain thsi |
|||
|
|
|
In Ruby, triple equals is the operator (implicitly) used by the
case/when uses this when deciding which case an arguments belongs to. So,
works as expected. |
|||
|
|
