tfm@europe.pub to Programmer Humor@programming.devEnglish · 21 hours agoTrue crimeeurope.pubimagemessage-square47linkfedilinkarrow-up1277arrow-down110
arrow-up1267arrow-down1imageTrue crimeeurope.pubtfm@europe.pub to Programmer Humor@programming.devEnglish · 21 hours agomessage-square47linkfedilink
minus-squareshape_warrior_t@programming.devlinkfedilinkEnglisharrow-up3·5 hours agoa === b returns true if a and b have the same type and are considered equal, and false otherwise. If a is null and b is a boolean, it will simply return false.
a === b
returns true ifa
andb
have the same type and are considered equal, and false otherwise. Ifa
isnull
andb
is a boolean, it will simply return false.