Skip to content

Commit 332f20b

Browse files
committed
devleagueprep#5 complete
1 parent a822d13 commit 332f20b

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

exercises.js

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,14 @@ console.log(mustBeTrue(false))
114114
* Console.log your result.
115115
*/
116116

117+
function bigBird(word){
118+
if(word.length === 3){
119+
return 'Word to Big Bird!';
120+
}else{
121+
return 'Incorrect';
122+
}
123+
}
124+
console.log(bigBird('say'))
117125

118126

119127
/*

0 commit comments

Comments
 (0)