Skip to content

Instantly share code, notes, and snippets.

@a-tarasyuk
Created August 3, 2016 11:59
Show Gist options
  • Save a-tarasyuk/d03dd22ef0bbfca723602a572e5b8736 to your computer and use it in GitHub Desktop.
Save a-tarasyuk/d03dd22ef0bbfca723602a572e5b8736 to your computer and use it in GitHub Desktop.
function multiply(x, y) {
if (y <= 0) {
return 0;
}
if (y > 0) {
return x + multiply(x, y - 1);
}
}
console.log(
multiply(6, 6)
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment