Skip to content

Instantly share code, notes, and snippets.

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 ksakae1216/74b5c5a009407a0ba6d0348af20c9ffa to your computer and use it in GitHub Desktop.
Save ksakae1216/74b5c5a009407a0ba6d0348af20c9ffa to your computer and use it in GitHub Desktop.
function hoge(cnt) {
cnt = 3;
}
var cnt = 1;
hoge(cnt);
console.log('カウント:' + cnt); //"カウント:1"が表示される
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment