Possible Duplicate:
Javascript === vs == : Does it matter which “equal” operator I use?
When would JavaScript == make more sense than ===?

What is the difference between below methods in comparing a string with undefined value.

 var x; 
 if(x==undefined) 
 { 
  alert(x); 
 }

and

if(x===undefined)
{ 
  alert(x); 
}

Why should i prefer second method in this case.. Please let me know advantages..

link|improve this question

@deceze Scenarios are different... – So I Nov 15 '11 at 6:33
@user stackoverflow.com/questions/776950/… then. – deceze Nov 15 '11 at 6:41
feedback

closed as exact duplicate by deceze, Sarfraz, mu is too short, zneak, DanneManne Nov 15 '11 at 6:36

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

4 Answers

up vote 5 down vote accepted
  • == attempts to convert the values to the same type before testing if they're the same. "5" == 5
  • === does not do this; it requires objects to be of the same type to be equal. "5" !== 5

In this case, the result is:

  • x == undefined will be true if x is undefined or null.
  • x === undefined will only be true if x is undefined.

You should prefer the first method if you'd like undefined and null to be treated equivalently. One common use of this is optional function arguments.

function greet(name, greeting) {
    if (name == undefined) name = 'World';
    if (greeting == undefined) greeting = 'Hello';
    alert(greeting + ' ' + name);
}

greet(); // alerts "Hello World"
greet("Bob"); // alerts "Hello Bob"
greet(null, "Goodbye"); // alerts "Goodbye World"
link|improve this answer
'You should prefer the second method' - Don't you mean the first method? – Eric Nov 15 '11 at 8:31
feedback

suppose we have x=5,

== is equal to

x==8 is false x==5 is true

=== is exactly equal to (value and type)

x===5 is true x==="5" is false

Hope you understand this concept

link|improve this answer
feedback

=== checks for the same type as well. You'll understand with a few examples:

(1 == '1') //Returns true

Since == doesn't bother with types, that returns true. However, if you want strict type checking, you'd use === because that returns true only if the it's of the same type, and is the same value.

(1 === '1') //Returns false
(1 === 1) //Returns true
  • Two strings are strictly equal when they have the same sequence of characters, same length, and same characters in corresponding
    positions.
  • Two numbers are strictly equal when they are numerically equal (have the same number value). NaN is not equal to anything,
    including NaN. Positive and negative zeros are equal to one another.
  • Two Boolean operands are strictly equal if both are true or both are false.
  • Two objects are strictly equal if they refer to the same Object.
  • Null and Undefined types are == (but not ===).

Reference

link|improve this answer
feedback

== is just comparing the two values, and if they are of different types, type conversion is done

=== compares the values and well as their types - so no type conversion will be done here.

link|improve this answer
feedback

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