Immediately invoked function expression: Difference between revisions

Content deleted Content added
m Reverted edits by Pingdpk (talk) (HG) (3.4.10)
add more ways to enforce a function expression
Line 19:
+function () { /* ... */ }();
void function () { /* ... */ }();
delete function () { /* ... */ }();
typeof function () { /* ... */ }();
await function () { /* ... */ }();
</syntaxhighlight>