Explain the tasks of terms used in Node REPL
Following are the terms used in REPL with their defined tasks: Read: It reads user’s input; parse the input into JavaScript data-structure and stores in memory. Eval: It takes and evaluates the data structure. Print: It is used to print the result. Loop: It loops the above command until user press ctrl-c twice to terminate. … Read more