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 332f20b commit 8f4da0cCopy full SHA for 8f4da0c
exercises.js
@@ -137,6 +137,14 @@ console.log(bigBird('say'))
137
* Console.log your result.
138
*/
139
140
+function isEqual(first, second){
141
+ if(first.length === second.length){
142
+ return 'You look mahvelous!';
143
+ }else{
144
+ return "I don't know who you are anymore."
145
+ }
146
+}
147
+console.log(isEqual('hello', 'hello!'))
148
149
/*
150
* #7
0 commit comments