Skip to content

Commit

Permalink
Exercise devleagueprep#4 complete
Browse files Browse the repository at this point in the history
  • Loading branch information
loganwong808 committed Jun 11, 2018
1 parent d2622b9 commit 31b8374
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions exercises.js
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,14 @@ console.log(isGreaterThan(3, 1));
* Console.log your result.
*/

function mustBeTrue(boo) {
if(boo === true){
return true;
}else{
return false;
}
}
console.log("mustBeTrue: ", mustBeTrue(true));


/*
Expand Down

0 comments on commit 31b8374

Please sign in to comment.