Skip to content

Instantly share code, notes, and snippets.

@iosorin
Created October 4, 2020 12:56
Show Gist options
  • Select an option

  • Save iosorin/46a18565f6d835d64c738ea226eb3af8 to your computer and use it in GitHub Desktop.

Select an option

Save iosorin/46a18565f6d835d64c738ea226eb3af8 to your computer and use it in GitHub Desktop.
greatest common devision
function gcd(a = 10, b = 20) {
if (b === 0) return a;
return gcd(b, a % b);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment