Skip to content

Commit d5d509b

Browse files
Kevin GuoKevin Guo
authored andcommitted
1 parent 3cfc724 commit d5d509b

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

exercises.js

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ function mustBeTrue(boo){
9191
if(boo === true)
9292
return true
9393
}
94-
console.log(mustBeTrue(false));
94+
console.log(mustBeTrue(true));
9595

9696
/*
9797
* #5
@@ -105,7 +105,11 @@ console.log(mustBeTrue(false));
105105
* Console.log your result.
106106
*/
107107

108-
108+
function bigBird(word){
109+
if(word.length > 3)
110+
return "Word to Big Bird!"
111+
}
112+
console.log(bigBird("asdf"));
109113

110114
/*
111115
* #6

0 commit comments

Comments
 (0)