Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

266
votes
20answers
25k views

JavaScript === vs == : Does it matter which “equal” operator I use?

I'm using JSLint to go through some horrific JavaScript at work and it's returning a huge number of suggestions to replace == with === when doing things like comparing idSele_UNVEHtype.value.length == ...
71
votes
2answers
30k views

Difference between == and === in JavaScript [closed]

Possible Duplicate: Javascript === vs == : Does it matter which “equal” operator I use? What is the difference between == and === in JavaScript? I have also seen != and !== ...
42
votes
8answers
2k views

Why is === faster than == in PHP?

Why is === faster than == in PHP?
8
votes
4answers
277 views

What is the difference between Java's equals() and C++'s operator ==?

In a question regarding the use of typeid is C++, I suggested it could be used to compare types in objects comparison. I haven't seen it done much, but I had Java's equals in mind. Looking into Java ...
4
votes
3answers
119 views

== and === operators in php

Let's say I have a variable that will always be a string. Now take the code below: if($myVar === "teststring") Note: $myVar will always be a string, so my questions is Which is quicker/best, ...
1
vote
1answer
42 views

Evaluating equality in perl using elements taken from an array ref

I have a small perl script that needs to evaluate the equality of two parameters and a small return from the database. my ($firstId, $secondId, $firstReturnedId, $secondReturnedId, $picCount); my ...
-1
votes
6answers
196 views

Using the == operator twice in a if statement

Is it okay to do like this in java, does it work? if (turtles.get(h).getX() == turtles.get(g).getX() == 450) { //stuff here } Basically, i want to check if X is the same value as Y and that ...