Skip to content

Instantly share code, notes, and snippets.

@linstantnoodles
Created August 15, 2012 03:13
Show Gist options
  • Save linstantnoodles/3355365 to your computer and use it in GitHub Desktop.
Save linstantnoodles/3355365 to your computer and use it in GitHub Desktop.
euclids algo
function eu(a, b){
if(a % b == 0){
return b;
}else{
return eu(b, a % b);
}
}
alert(eu(30,12));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment