Skip to content

Instantly share code, notes, and snippets.

@dotsonjb14
Created November 3, 2018 17:23
Show Gist options
  • Save dotsonjb14/0ffba0b827a1d411349afcf2c70b8075 to your computer and use it in GitHub Desktop.
Save dotsonjb14/0ffba0b827a1d411349afcf2c70b8075 to your computer and use it in GitHub Desktop.
const input1 = 4;
const input2 = 6;
function pow(input) {
return input * input;
}
console.log(pow(input1) + pow(input2));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment