'How can i fix Terminal doesn't show any output?
only information i got is this:
[Running] node "/Users/...etc
[Done] exited with code=0 in 0.071 seconds
I pressed the run-button, but the terminal does not displays any of the code below.
Files: index.html, script.css, script.js ;
I am working with Visual Studio.
let mood = 'sleepy';
console.log("Eigene .changeMood Methode bauen")
const changeMood = (stimmung) => {
let variable = stimmung
return variable;
}
changeMood(Happy);
Solution 1:[1]
Go to the Extensions -> search for (code-runner) -> Disable options (Click)
reference: exited with code=0 in 0.074 seconds - Output window has no output in Visual Studio
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | MarcoWriteCode |
