Skip to content

Commit 63ad2da

Browse files
Kevin GuoKevin Guo
authored andcommitted
1 parent d5d509b commit 63ad2da

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

exercises.js

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,13 @@ console.log(bigBird("asdf"));
124124
* Console.log your result.
125125
*/
126126

127-
127+
function isEqual(first, second){
128+
if(first === second)
129+
return "You look mahvelous!"
130+
else
131+
return "I don't know who you are anymore."
132+
}
133+
console.log(isEqual('asdf','asf'));
128134
/*
129135
* #7
130136
* Function - notEqual

0 commit comments

Comments
 (0)