Skip to content

Commit

Permalink
docs: Fix tense (#6995)
Browse files Browse the repository at this point in the history
Fix tense 

fix the tense from 'executed' to 'executing'

Signed-off-by: Kenny <adelekekehinde06@gmail.com>
  • Loading branch information
adeleke5140 authored Aug 20, 2024
1 parent 9af1dcb commit 8def452
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ false
>
```

Note the difference in the outputs of the above two lines. The Node REPL printed `undefined` after executed `console.log()`, while on the other hand, it just printed the result of `5 === '5'`. You need to keep in mind that the former is just a statement in JavaScript, and the latter is an expression.
Note the difference in the outputs of the above two lines. The Node REPL printed `undefined` after executing `console.log()`, while on the other hand, it just printed the result of `5 === '5'`. You need to keep in mind that the former is just a statement in JavaScript, and the latter is an expression.

In some cases, the code you want to test might need multiple lines. For example, say you want to define a function that generates a random number, in the REPL session type in the following line and press enter:

Expand Down

0 comments on commit 8def452

Please sign in to comment.