JavaScript-Equality-Table icon indicating copy to clipboard operation
JavaScript-Equality-Table copied to clipboard

White space

Open rossmills99 opened this issue 11 years ago • 0 comments

Something that I came up against recently, whitespace compared for equality with 0 resolves to true. It's not the same as an empty string because empty string and white space don't compare equally with empty array for example. So I think white space could legitimately be included in the table.

'\n\t ' == 0 true '\n\t ' == [] false '' == [] true

rossmills99 avatar Oct 31 '14 09:10 rossmills99