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 c645af8 commit 440d47aCopy full SHA for 440d47a
exercises.js
@@ -116,7 +116,16 @@ console.log(mustBeTrue(falseTest));
116
* Console.log your result.
117
*/
118
119
+function bigBird(word){
120
+ if (word.length === 3) {
121
+ return 'Word to Big Bird!';
122
+ } else {
123
+ return "You don't belong on Sesame Street.";
124
+ }
125
+}
126
127
+console.log(bigBird('Hey'));
128
+console.log(bigBird('Hi'));
129
130
/*
131
* #6
0 commit comments