@[email protected] to Programmer [email protected] • 3 years ago===programming.devimagemessage-square76fedilinkarrow-up1695arrow-down117
arrow-up1678arrow-down1image===programming.dev@[email protected] to Programmer [email protected] • 3 years agomessage-square76fedilink
minus-square@[email protected]linkfedilink4•3 years agoAs a backend developer i still dont know a shit what that means
minus-squareUndercoverUlrikHD 🇳🇴cakelinkfedilink9•3 years agoIn javascript, === does not perform type coercion when checking for equality
minus-square@[email protected]linkfedilink5•3 years agoBecause in JS: 1 == "1" // true 1 === "1" // false
As a backend developer i still dont know a shit what that means
In javascript, === does not perform type coercion when checking for equality
Because in JS: