Skip to content

Commit a822d13

Browse files
committed
devleagueprep#4 complete
1 parent 356e9cb commit a822d13

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

exercises.js

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,14 @@ console.log(isGreaterThan(3, 2))
9393
* Console.log your result.
9494
*/
9595

96-
96+
function mustBeTrue(boo){
97+
if(boo === true){
98+
return true;
99+
}else{
100+
return false;
101+
}
102+
}
103+
console.log(mustBeTrue(false))
97104

98105
/*
99106
* #5

0 commit comments

Comments
 (0)