REPL Terminal
What is REPL
It is an interactive programming environment that allows users to run the JavaScript code directly in the terminal, It stands for:
- Read β It reads the user input and analyses it into the JavaScript expressions.
- Eval β It evaluates the analyzed JavaScript expressions.
- Print β It prints the evaluation result.
- Loop β Loops back to read the next input.