Comment on [deleted]
garretble@lemmy.world 6 months agoFor me it’s: remember the last user on this device!
If I open Hulu and I have ONE account, why are you making me select the ONE account? I have to select it every time. They should know.
if(accounts.length === 1) { setAccount(accounts[0]; }
There. I fixed it. Give me a job.
cyberpunk007@lemmy.ca 6 months ago
Triple equals? I’m no expert programmer but I’ve never seen that before.
cactopuses@lemm.ee 6 months ago
Double equals means equals, triple equals means strict equality including type.
Prevents a Boolean true being evaluated to 1 for example
garretble@lemmy.world 6 months ago
Other people have answered, but if you’d like to know more it’s a JavaScript thing:
Strict Equality (===)
Vs
Equality (==)
technohacker@programming.dev 6 months ago
Specific to JS, due to the double equals being type oblivious