Problem Statement
Does Node.js provide a built-in debugger?
Explanation
Yes. You can run `node inspect app.js` to debug applications. The built-in debugger allows step-by-step execution, variable inspection, and breakpoints using Chrome DevTools or VSCode integration.
Code Solution
SolutionRead Only
node inspect index.js // open chrome://inspect for debugging