723
The Holy Trinity of JavaScript
(programming.dev)
Welcome to Programmer Humor!
This is a place where you can post jokes, memes, humor, etc. related to programming!
For sharing awful code theres also Programming Horror.
===
is just==
with extra stepsIt's actually the other way around. == has to perform type coercions as part of its equality algorithm, whereas === does not, so == has more steps.
It's to be REALLY sure