@[email protected] to Programmer [email protected] • 10 months ago===programming.devimagemessage-square60fedilinkarrow-up1662arrow-down115
arrow-up1647arrow-down1image===programming.dev@[email protected] to Programmer [email protected] • 10 months agomessage-square60fedilink
minus-square@[email protected]linkfedilink4•10 months agoAs a backend developer i still dont know a shit what that means
minus-square@[email protected]linkfedilink9•10 months agoIn javascript, === does not perform type coercion when checking for equality
minus-square@[email protected]linkfedilink5•10 months 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: