Skip to content

Instantly share code, notes, and snippets.

@suhailgupta03
Created May 16, 2023 16:40
Show Gist options
  • Select an option

  • Save suhailgupta03/cbd35c3f87ca208feced88520a515fb0 to your computer and use it in GitHub Desktop.

Select an option

Save suhailgupta03/cbd35c3f87ca208feced88520a515fb0 to your computer and use it in GitHub Desktop.
function multiply(a, b) {
return a * b;
}
function square(n) {
return multiply(n, n);
}
function printSquare(n) {
let result = square(n);
console.log(result);
}
printSquare(5);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment