mirror of
https://github.com/airbnb/javascript.git
synced 2026-01-14 08:38:08 -05:00
[guide] fix a few IIFE examples
This commit is contained in:
@@ -1936,13 +1936,13 @@ Other Style Guides
|
||||
(() => {
|
||||
const name = 'Skywalker';
|
||||
return name;
|
||||
})();
|
||||
}());
|
||||
|
||||
// good (guards against the function becoming an argument when two files with IIFEs are concatenated)
|
||||
;(() => {
|
||||
const name = 'Skywalker';
|
||||
return name;
|
||||
})();
|
||||
}());
|
||||
```
|
||||
|
||||
[Read more](http://stackoverflow.com/questions/7365172/semicolon-before-self-invoking-function/7365214%237365214).
|
||||
|
||||
Reference in New Issue
Block a user