diff --git a/README.md b/README.md index 71979c2b..43d36eb0 100644 --- a/README.md +++ b/README.md @@ -1754,8 +1754,8 @@ Other Style Guides } ``` - - - [14.3](#hoisting--named-expresions) Named function expressions hoist the variable name, not the function name or the function body. + + - [14.3](#hoisting--named-expressions) Named function expressions hoist the variable name, not the function name or the function body. ```javascript function example() { @@ -1957,7 +1957,7 @@ Other Style Guides const bar = a ** b - 5 % d; // bad - // one may be confused into thinking (a || b) && c + // one may be confused into thinking (a || b) && c if (a || b && c) { return d; }