I'm very new to coding and am starting with JS using Visual Studio Code. I'm following some of their tutorial videos and on the very first one when I hit F5 to run the script, I get the following popup error:
Can't find nod.js binary "node": path does not exist. Maek sure Node.js is installed and in your PATH, or set the "runtimeExecutable" in your launch.json
Then if I click on the Launch.json button it takes me to the code for that, but I'm not sure what to do there. Like I said, very new to coding. I've done some codecademy, but I want to start using an IDE.
EDIT: I uninstalled and reinstalled VS Code and started a new project. I created the folder to save into and title my plain text project as "jsSample.js"
Here's my script:
console.log("---------------");
console.log("Rise & Shine!");
console.log("Ready to learn!");
console.log("---------------");
Then when I hit F5 this window pops up asking me to select a debugger. It lists:
- Node.js
- VS Code Extension Development
- Web App (Chrome)
- Web App (Edge)
- Install an extension for JavaScript...
I obviously selected Node.js the first time I tried this, but since reinstalling, I don't know which selection to choose to simply get this to output in the default Debug Console

MaekbeMake? (pro-tip. copy and paste)