Skip to content

Instantly share code, notes, and snippets.

@yoneda
Created March 10, 2018 12:58
Show Gist options
  • Save yoneda/b788d3a521bb4e481bd8c70884a5a474 to your computer and use it in GitHub Desktop.
Save yoneda/b788d3a521bb4e481bd8c70884a5a474 to your computer and use it in GitHub Desktop.
javascript exe test
// js単体でプログラムを動かしたい時は、
// $ node test.js
// でOK
var a = 50;
var b = 60;
var result = a + b;
console.log("結果は:"+result);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment