en.javascript.info
en.javascript.info copied to clipboard
fix: bitwise/logical NOT differentiation
In 1.6.4 "The old 'var' ", an example in the IIFE section states:
!function() { alert("Bitwise NOT operator starts the expression"); }();
although ! represents the logical NOT operator rather than the bitwise NOT operator.