Skip to content

Commit

Permalink
refactor ex 12
Browse files Browse the repository at this point in the history
  • Loading branch information
victorlhlee authored Jan 15, 2019
1 parent 5b6c7d2 commit 43d80e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion solutions.js
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ console.log("daClub: ", daClub(22, 21));
*
* If EITHER the credits value is greater than or equal to 120 or the grades value is greater than or equal to 2.0, then the function will return the message: "Congratulations on a job well done." Otherwise, return the message: "See you in summer school."
* Console.log your result.
*
*/

function graduation(credits, grades){
if(credits >= 120 || grades >= 2.0){
Expand Down

0 comments on commit 43d80e7

Please sign in to comment.