As the title says. I'm learning coercion in JavaScript and I don't understand the return of that expression.
const test = !+[]+[]+![];
console.log(test);
As the title says. I'm learning coercion in JavaScript and I don't understand the return of that expression.
const test = !+[]+[]+![];
console.log(test);
Copyright © 2021 Jogjafile Inc.
First you have to be aware of how the expression is evaluated so for expressions like this it could be useful to take a look on operator precedence
I will wrap the expressions with parenthesis and see how it goes. The logical not precedes addition (infix +)
Then when you try to evaluate
true+[]it will convert both to string and will result in "true", after that you will add"true"+false,falsewill be converted to string.