Skip to content

Commit 8f4da0c

Browse files
committed
devleagueprep#6 complete
1 parent 332f20b commit 8f4da0c

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
@@ -137,6 +137,14 @@ console.log(bigBird('say'))
137137
* Console.log your result.
138138
*/
139139

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!'))
140148

141149
/*
142150
* #7

0 commit comments

Comments
 (0)