Skip to content

Commit

Permalink
devleagueprep#4 js-logic
Browse files Browse the repository at this point in the history
  • Loading branch information
Lorelei808 committed Jun 10, 2018
1 parent 62adbc4 commit 0b96de8
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions exercises.js
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,15 @@ function isGreaterThan(first, second){
* The function will return true if the value passed into the function is "true".
* Console.log your result.
*/


console.log("4--------------------");
function mustBeTrue(boo){
if(boo > 11){
return true;
}else{
return;
}
}
console.log(mustBeTrue(1));

/*
* #5
Expand Down

0 comments on commit 0b96de8

Please sign in to comment.