We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 62adbc4 commit 0b96de8Copy full SHA for 0b96de8
exercises.js
@@ -91,8 +91,15 @@ function isGreaterThan(first, second){
91
* The function will return true if the value passed into the function is "true".
92
* Console.log your result.
93
*/
94
-
95
+console.log("4--------------------");
+function mustBeTrue(boo){
96
+ if(boo > 11){
97
+ return true;
98
+ }else{
99
+ return;
100
+ }
101
+}
102
+console.log(mustBeTrue(1));
103
104
/*
105
* #5
0 commit comments