en.javascript.info
en.javascript.info copied to clipboard
Added information about new logical operators: `||=`, `&&=` + task
Logical operators
ECMAScript 2021 introduced logical assignment operators:
-
||=(Logical OR assignment) -
&&=(Logical AND assignment)
This PR adds a description of the new operators, and one task on this topic.