No output when I run a javascript code in vs code

2.9k Views Asked by At

I downloaded node.js and code runner on vs code. The first time I ran the code there was an output. But when I created a new file and tried to run this piece of code in vs code, there wasn't any output. Normally, there should be an output of "1euro" but there is nothing. What's the problem?picture of how it looks like in vs code

var preis=(3);
var rabatt=(2);
var result=(preis-rabatt);
console.log(result+"euro");

2

There are 2 best solutions below

0
On

i had the same issue it has been resolved by saving the file!

0
On

Your code is working for me.. I suggest you to do the following,

  1. Save the file.
  2. Close the VS code app and reopen it again and run it..