I know this is an old question, and I doubt anyone still reads it, but since I got kinda flamed in this question's comments, I'll add something to this.
In the answers here, I didn't read anything about what equal means. Sure, it's true that === means equal and of the same type, but that's not the whole story. It actually means that both operands reference the same object, or in case of value types, have the same value.
So, let's take the following code:
var a = [1,2,3];
var b = [1,2,3];
var c = a;
var ab_eq = (a === b); // returns false
var ac_eq = (a === c); // returns true
The same here:
var a = { x: 1, y: 2 };
var b = { x: 1, y: 2 };
var c = a;
var ab_eq = (a === b); // returns false
var ac_eq = (a === c); // returns true
This behavior is not always obvious. There's more to the story than being equal and being of the same type.
UPDATE:
Strings: the plot thickens...
Strings are not value types, but in Javascript they behave like value types, so they will be "equal" when the characters in the string are the same and when they are of the same length.
Now it becomes interesting:
var a = "12" + "3";
var b = "123";
alert(a === b); // returns true, because strings behave like value types
And to make it really interesting:
var a = new String("123");
var b = "123";
alert(a === b); // returns false !! (but they are equal and of the same type)
I thought strings behave like value types? Well, it depends who you ask...
The last example adds another twist to the story. Creating a string using the String() object constructor actually doesn't create a variable of type "string", but of type "object". But you can use the object as a string. If you are unaware of this behavior, you can easily shoot yourself in the foot without knowing it.