You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Given an expression of the form (a++).toString(), pretty-printing removes the parentheses around the operator expression, transforming it to a++.toString().
When that output is evaluated, a SyntaxError or ReferenceError is thrown for postfix and prefix operators respectively.
Given an expression of the form
(a++).toString()
, pretty-printing removes the parentheses around the operator expression, transforming it toa++.toString()
.When that output is evaluated, a SyntaxError or ReferenceError is thrown for postfix and prefix operators respectively.
[email protected]
The text was updated successfully, but these errors were encountered: