(greater Than And Lower Than) Or Equal Strict Forms
greater than or equal than >= and lower than or equal than <= strict versions in JavaScript? Similar to === and !==. example: false >= 0 true false >== 0 VM174:2 Uncau
Solution 1:
Long story short, no. These operators do not exist.
Solution 2:
Ok, let's assume, that comparing operator a >== b
exist. When it return false
, what does it mean? a
less than b
or a
does not strictly equals to b
? You can read more in that anwser.
Post a Comment for "(greater Than And Lower Than) Or Equal Strict Forms"