Skip to content

Instantly share code, notes, and snippets.

@cpq
Created October 17, 2017 10:20
Show Gist options
  • Select an option

  • Save cpq/939cbf6998359c9389d3a819e211a5bf to your computer and use it in GitHub Desktop.

Select an option

Save cpq/939cbf6998359c9389d3a819e211a5bf to your computer and use it in GitHub Desktop.
JS args
//////// old
function old1() {
};
function old2() {
old1();
}
old2();
////////// new
function new1(v) {
console.log(v);
};
function new2() {
var myLocalVar = 123;
new1(myLocalVar);
}
new2();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment