Skip to content

Commit

Permalink
Finished exercise devleagueprep#3
Browse files Browse the repository at this point in the history
  • Loading branch information
loganwong808 committed Jun 11, 2018
1 parent bedc5a4 commit d2622b9
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions exercises.js
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,13 @@ console.log(login("test1234"));
* Console.log your result.
*/

function isGreaterThan(first, second){
if(first > second){
return "first is the best (true)";
}
}
console.log(isGreaterThan(3, 1));



/*
Expand Down

0 comments on commit d2622b9

Please sign in to comment.