Skip to content

Instantly share code, notes, and snippets.

@thinker3197
Created January 8, 2018 05:29
Show Gist options
  • Save thinker3197/449dbf79f52184c8830df5053a06f77c to your computer and use it in GitHub Desktop.
Save thinker3197/449dbf79f52184c8830df5053a06f77c to your computer and use it in GitHub Desktop.
function multiply(a, b) {
return a*b;
}
function square(a) {
const sq = multiply(a, a);
console.log(sq);
}
square(3);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment