@[email protected] to Programmer [email protected] • 2 years ago===programming.devimagemessage-square76fedilinkarrow-up1695arrow-down117
arrow-up1678arrow-down1image===programming.dev@[email protected] to Programmer [email protected] • 2 years agomessage-square76fedilink
minus-square@[email protected]linkfedilink4•2 years agoAs a backend developer i still dont know a shit what that means
minus-square@[email protected]linkfedilink9•2 years agoIn javascript, === does not perform type coercion when checking for equality
minus-square@[email protected]linkfedilink5•2 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: