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.

Jan 20, 2023, 11:04 PM
3 1 3

comments (single view)

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.

View all comments