Skip to content

Instantly share code, notes, and snippets.

@SilentGamelan
Created June 24, 2018 15:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save SilentGamelan/0bceacfeb591ce23c0f6845abc6040a3 to your computer and use it in GitHub Desktop.
Save SilentGamelan/0bceacfeb591ce23c0f6845abc6040a3 to your computer and use it in GitHub Desktop.
test for VSCode debugger
function showMsg(msg){
console.log(msg);
}
function passMsg(myMsg){
showMsg(myMsg);
return("done");
}
var myMsg = "Hello World.";
console.log(showMsg(myMsg));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment