for example, perl doesn't need === operator as it has operators which force desired casting
4 eq "4" # true (string comparison) 4 == "4" # true (int comparison)
More information about formatting options
dynamic languages
for example, perl doesn't need === operator as it has operators which force desired casting
4 eq "4" # true (string comparison)
4 == "4" # true (int comparison)