InterviewSolution
| 1. |
Explain Repl In Node.js? |
|
Answer» The REPL stands for “Read Eval Print Loop”. It is a simple program that accepts the commands, evaluates them, and finally PRINTS the results. REPL provides an environment similar to that of Unix/Linux shell or a window console, in which we can ENTER the command and the system, in turn, responds with the output. REPL performs the following tasks:
The REPL stands for “Read Eval Print Loop”. It is a simple program that accepts the commands, evaluates them, and finally prints the results. REPL provides an environment similar to that of Unix/Linux shell or a window console, in which we can enter the command and the system, in turn, responds with the output. REPL performs the following tasks: |
|