Javascript:
console.log("1"==1) True
print "1"==1; 1
Python 2.7.12 (default, Nov 19 2016, 06:48:10) [GCC 5.4.0 20160609] on linux2 Type "help", "copyright", "credits" or "license" for more information. >>> "1"==1 False
I also find that in Javascript:
>>typeof(1) "number" >>typeof("1") "string"
>>> gettype("1") => "string" >>> gettype(1) => "integer"
System.out.println(1 == "1"); error: incomparable types: int and String
<?php echo "1"==1; ?> 1
Javascript:
Perl: What's your preferred language?