Content deleted Content added
Tag: Reverted |
m Rollback edit(s) by 5.112.78.180 (talk): not clear what's intended (RW 16.1) |
||
Line 27:
In contexts where an expression is expected, wrapping in parentheses is not necessary:
<syntaxhighlight lang="javascript">
let f = function
true && function (
0, function (
</syntaxhighlight>
Line 40:
<syntaxhighlight lang="JavaScript">
a = b + c
;(function (
// code
})();
|