Question - What is the use of REPL in Node.js?
Answer -
REPL stands for Read-Eval-Print-Loop. It provides users with a virtual environment to test JavaScript code in Node.js.
To launch REPL, a simple command called ‘node’ is used. After this, JavaScript commands can be typed directly into the command line.