Does VSCode have any ability to print expressions as they are executed? For example, instead of having to write:
console.log(486);
console.log(1+2);
console.log("Hello");
Just being able to have:
486;
1+2;
"Hello";
And it doing the same thing. In other words to treat it less like an executed program and more like an REPL.