Tagged Questions
0
votes
3answers
143 views
Strict Comparison in PHP
I need to write a Player class in php that works with a function that I am not allowed to change. I have to write this class in a way that this function will return the maximum value. I can only use ...
1
vote
2answers
168 views
Why does Javasript's strict comparison act the way it does? [duplicate]
Possible Duplicate:
Is JavaScript’s math broken?
If the main difference between Javascript's "strict comparison" operators and the traditional ones is type coercion, why does
...
0
votes
2answers
586 views
Should one use strict comparison in Strings?
I know that for instance, using:
if (in_array('...'), array('.', '..', '...') === true)
Over:
if (in_array('...'), array('.', '..', '...') == true)
Can increase performance and avoid some common ...