19
Skayo
8y

devRant !== 9GAG

Comments
  • 6
    Error: illegal start of expression
  • 1
    still true tho!
  • 1
    @filthyranter Yes but this was all I could think about! 😅
  • 0
    Not equivalent or what?
  • 1
    @-noob it's strict equality in JavaScript. === Means type and content, and == means content only.

    4 != '5'
    5 == '5'
    '5' === '5'
    5 !== '5'
  • 1
    @DucksCanCode🤔 not sure if this language is awesome or that special place in hell people keep telling me to visit.
  • 0
    @orto Honestly, I think it's just stuck around from the ye olde days when JavaScript had issues with type and value comparisons or something. Don't quote me though, I think I heard that on here, and that was the first and last time I thought about it.
Add Comment