Concept Flow - Running scripts with node command
Write JavaScript file: script.js
Open terminal/command prompt
Type: node script.js
Node reads script.js
Node executes code line by line
Output shown in terminal
Script ends
This flow shows how you write a JavaScript file, run it with the node command, and see the output in the terminal.