Skip to content

Commit

Permalink
completed devleagueprep#4
Browse files Browse the repository at this point in the history
  • Loading branch information
kinwail committed Jun 11, 2018
1 parent 5fadb08 commit 4b0e2c1
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,2));
* Console.log your result.
*/

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


/*
Expand Down

0 comments on commit 4b0e2c1

Please sign in to comment.