JPDev@programming.dev to Programmer Humor@programming.dev · 9 months ago===programming.devimagemessage-square65fedilinkarrow-up1674arrow-down117
arrow-up1657arrow-down1image===programming.devJPDev@programming.dev to Programmer Humor@programming.dev · 9 months agomessage-square65fedilink
minus-squareclb92@feddit.dklinkfedilinkEnglisharrow-up3·edit-29 months agoLike == but more strict. The == operator will do type conversion, so 0 == '' will actually be true, as an example. Sometimes (honestly, most times) you may want to compare more strictly. See this StackOverflow answer: https://stackoverflow.com/questions/359494/which-equals-operator-vs-should-be-used-in-javascript-comparisons
Like
==
but more strict. The==
operator will do type conversion, so0 == ''
will actually be true, as an example. Sometimes (honestly, most times) you may want to compare more strictly.See this StackOverflow answer: https://stackoverflow.com/questions/359494/which-equals-operator-vs-should-be-used-in-javascript-comparisons