Skip to content

Commit

Permalink
repl: document top level await limitation with const/let
Browse files Browse the repository at this point in the history
Fixes: nodejs#17669
Signed-off-by: James M Snell <jasnell@gmail.com>
  • Loading branch information
jasnell committed Apr 28, 2021
1 parent 3240435 commit d846610
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions doc/api/repl.md
Original file line number Diff line number Diff line change
Expand Up @@ -233,6 +233,23 @@ undefined
undefined
```

One known limitation of using the `await` keyword in the REPL is that
it will invalidate the lexical scoping of the `const` and `let`
keywords.

For example:

```console
> const m = await Promise.resolve(123)
undefined
> m
123
> const m = await Promise.resolve(234)
undefined
> m
234
```

### Reverse-i-search
<!-- YAML
added:
Expand Down

0 comments on commit d846610

Please sign in to comment.