Problem Statement
What is REPL in Node.js?
Explanation
REPL stands for Read-Eval-Print Loop. It is a Node.js command-line tool that allows developers to quickly test code snippets. You can type JavaScript directly into the terminal, and Node.js will execute and return results immediately — useful for debugging and experimenting.