mirror of
https://github.com/zebrajr/node.git
synced 2025-12-06 12:20:27 +01:00
doc: fix examples in repl.md
* Update an example according to an actual REPL session. * Replace an arrow function with a common function to hold `this`. PR-URL: https://github.com/nodejs/node/pull/12684 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
This commit is contained in:
parent
373e9f08af
commit
360efe48bc
|
|
@ -335,7 +335,7 @@ replServer.defineCommand('sayhello', {
|
|||
this.displayPrompt();
|
||||
}
|
||||
});
|
||||
replServer.defineCommand('saybye', () => {
|
||||
replServer.defineCommand('saybye', function saybye() {
|
||||
console.log('Goodbye!');
|
||||
this.close();
|
||||
});
|
||||
|
|
@ -440,6 +440,8 @@ without passing any arguments (or by passing the `-i` argument):
|
|||
```js
|
||||
$ node
|
||||
> const a = [1, 2, 3];
|
||||
undefined
|
||||
> a
|
||||
[ 1, 2, 3 ]
|
||||
> a.forEach((v) => {
|
||||
... console.log(v);
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user