+ 1
What's the difference between two things being identical and two things being equal?
Js operators
2 Respostas
+ 2
Maybe identical this numbers
2 == 2 (true)
2 === 2 (true)
And equal is '2' == 2 (true)
but '2' === 2 (false)
Becouse '2' - string and 2- number
They equal, but no identical
0
Identical is the same thing. Equal is is the same value. (at least that’s how I see it)