Skip to content

Instantly share code, notes, and snippets.

@shigemk2
Created February 26, 2015 11:30
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 shigemk2/1a8f54cf0a7cf9163311 to your computer and use it in GitHub Desktop.
Save shigemk2/1a8f54cf0a7cf9163311 to your computer and use it in GitHub Desktop.
// varのあとにまとめて書いたほうが忘れないっていう人もいる
var a, b, c;
// 1個ずつ書いているほうが分かりやすいっていう人もいて
var d; var e; var f;
// そこは宗教
// JSにブロックスコープはない
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment