JPDev@programming.dev to Programmer Humor@programming.dev · 9 months ago===programming.devimagemessage-square79fedilinkarrow-up1685arrow-down117
arrow-up1668arrow-down1image===programming.devJPDev@programming.dev to Programmer Humor@programming.dev · 9 months agomessage-square79fedilink
minus-squareBougieBirdie@lemmy.blahaj.zonelinkfedilinkEnglisharrow-up6·9 months agoThe other comments explains it in pretty good detail, but when I was learning my teacher explained it sort of like a mnemonic. 1 + 1 = 2 is read “one plus one equals two” 1 + 1 == 2 is read “one plus one is equal to two” 1 + 1 === 2 is read “one plus one is really equal to two” And you hit the nail on the head, is that === is type explicit while == is implicit.
minus-squarebobbykjack@programming.devlinkfedilinkarrow-up3·edit-29 months agoI’d use something like: = becomes == equals === is identical to It’s funny how everyone thinks “equals” in this context should be “identical to” when, in normal language, it doesn’t really mean that at all!
The other comments explains it in pretty good detail, but when I was learning my teacher explained it sort of like a mnemonic.
1 + 1 = 2 is read “one plus one equals two”
1 + 1 == 2 is read “one plus one is equal to two”
1 + 1 === 2 is read “one plus one is really equal to two”
And you hit the nail on the head, is that === is type explicit while == is implicit.
I’d use something like:
= becomes
== equals
=== is identical to
It’s funny how everyone thinks “equals” in this context should be “identical to” when, in normal language, it doesn’t really mean that at all!