Skip to content

Instantly share code, notes, and snippets.

@puyepuye
Created February 8, 2022 13:56
Show Gist options
  • Select an option

  • Save puyepuye/8a9f90bd23b5c91f2f62354948836181 to your computer and use it in GitHub Desktop.

Select an option

Save puyepuye/8a9f90bd23b5c91f2f62354948836181 to your computer and use it in GitHub Desktop.
//solution 1
fucntion maximum(a,b){
if (a>b){
return a
} else {
return b
}
//solution 2
funciton maximum(a.b){
if (a>b) return a
return b
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment