vote up 4 vote down star

Possible Duplicates:
Difference between === operator == operator
Javascript === vs ==

I have come accross this sign/operator recently a couple of times in javascript code.

if (3 === y + z) {alert('true');}

What does it mean and are there any alternatives?

flag

72% accept rate
2  
Since this question is closed, and I feel the whole story is not being told, check my reply here: stackoverflow.com/questions/359494/… – Philippe Leybaert Jun 5 at 19:13
Everyone follow activa's link - every answer on this question is WRONG. – Software Monkey Jun 5 at 19:52

closed as exact duplicate by womp, Naveen, John Rasch, AnthonyWJones, Lucas McCoy Jun 5 at 18:46

5 Answers

vote up 10 vote down check

=== is the same as == with the addition of checking types.

e.g. 3 == "3" is true, 3 === "3" is false.

link|flag
1  
=== == == ? :-) – bgy Jun 5 at 18:48
vote up 4 vote down

As some extra knowledge. It's called the Identity operator.

link|flag
vote up 1 vote down

Enforces equality and type equality. Other languages use this as well, such as PHP.

link|flag
vote up 3 vote down

=== checks if a one value is of the same type and value as the item it is compared too. In comparison, == just checks if the values are the same (not the type).

2 === 2 //true
2 === "2" //false

2 == 2 //true
2 == "2" //true
link|flag
vote up 11 vote down

The two objects are equal AND the same type

link|flag
3  
dunno why you got downvoted, that's correct. – Randolpho Jun 5 at 18:45
1  
define "equal". That's the whole point – Philippe Leybaert Jun 5 at 18:45
Really? How so? – Randolpho Jun 5 at 18:47
1  
well, for instance, [1,2,3] === [1,2,3] is false. I think it's important to make that clear. – Philippe Leybaert Jun 5 at 18:52
activa is correct; this answer is incorrect. – Software Monkey Jun 5 at 19:53

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