quote:
Originally posted by Napbree
No
"2" === 2 would be true. 3 '='s means it has to be identical. Which it is.
You can test it yourself, "2" and 2 are not identical as the first one is a string (char array) and the second one is an integer.
Simple test:
code:
function testit()
{
"2" === 2 ? Debug.Trace("TRUE") : Debug.Trace("FALSE");
}