Answers for "how to run js file in vs code"

1

how to run javascript program in visual studio code

id =vinay;
const mul=function multi(a,b) {
  return (a*b)
  document.getElementById("vinay").innerHTML=mul(5,8)
}
Posted by: Guest on February-27-2021
0

how to run js file in vs code

Simply open the .js file in question in VS Code, 
  switch to the 'Debug Console' tab, hit the debug button 
  in the left nav bar, and click the run icon (play button)!
Posted by: Guest on November-17-2020

Code answers related to "how to run js file in vs code"

Code answers related to "Javascript"

Browse Popular Code Answers by Language