Skip to content

Commit 919a550

Browse files
JonJon
authored andcommitted
1 parent adc9d95 commit 919a550

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

exercises.js

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ function bigBird(word){
127127
return 'ERROR';
128128
}
129129
}
130-
console.log("5. bigBird " + bigBird("rath"));
130+
console.log("5. bigBird " + bigBird("dog"));
131131

132132

133133
/*
@@ -143,6 +143,16 @@ console.log("5. bigBird " + bigBird("rath"));
143143
* Console.log your result.
144144
*/
145145

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'));
146156

147157
/*
148158
* #7

0 commit comments

Comments
 (0)