This question already has an answer here:
- Why {} != ( {} ) in JavaScript? 2 answers
Why is it that when i type {} === null
into the console it throws
SyntaxError: Unexpected token ===
null === {}
gives me false as expected.
This question already has an answer here:
Why is it that when i type {} === null
into the console it throws
SyntaxError: Unexpected token ===
null === {}
gives me false as expected.
Because {}
is treated as an empty block. You can wrap it in parentheses to force an expression:
({} === null)