Skip to content

Commit

Permalink
completed devleagueprep#4
Browse files Browse the repository at this point in the history
  • Loading branch information
Djavan Cackley authored and Djavan Cackley committed Oct 8, 2018
1 parent be4c2d7 commit f70fbc6
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions exercises.js
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,15 @@ 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 f70fbc6

Please sign in to comment.