In JavaScript, [] == 0 is true.
In JavaScript, [0] == 0 is also true.
You might assume [] == [0] is true from this.
But no. JavaScript says it's false.
It works with strings too, look:
In JavaScript, ““ == 0 is true.
In JavaScript, “0” == 0 is also true.
You might assume ““ == “0” is true from this.
But no. JavaScript says it’s false.