I have been using Pycharm for Python and now also learning Javascript in vscode. However, every time I try to output something with console.log after running it using the extension Code Runner, there is no output in the output window? Am I doing something wrong? When I hit run or play in Pycharm, it runs Python code step by step and shows me each line's output and results.. but for Javasript in vscode, there is no output? I put a very simple line below wondering if someone can guide me a bit. Thank you!!
var sum = 3;
console.log(sum);