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 adc9d95 commit 919a550Copy full SHA for 919a550
exercises.js
@@ -127,7 +127,7 @@ function bigBird(word){
127
return 'ERROR';
128
}
129
130
-console.log("5. bigBird " + bigBird("rath"));
+console.log("5. bigBird " + bigBird("dog"));
131
132
133
/*
@@ -143,6 +143,16 @@ console.log("5. bigBird " + bigBird("rath"));
143
* Console.log your result.
144
*/
145
146
+function isEqual(first, second){
147
+ if(first === second){
148
+ return 'You look mahvelous!'
149
+ }else{
150
+ return "I don't know who you are anymore."
151
+ }
152
153
+
154
155
+console.log(isEqual('hi', 'hi'));
156
157
158
* #7
0 commit comments