Skip to content

Commit 543e28b

Browse files
Kevin GuoKevin Guo
authored andcommitted
1 parent 20a52d7 commit 543e28b

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
@@ -66,8 +66,14 @@ console.log(login("test1234"));
6666
* Console.log your result.
6767
*/
6868

69+
function isGreaterThan(first, second){
70+
if(first > second)
71+
return true
72+
else
73+
return false
6974

70-
75+
}
76+
console.log(isGreaterThan(1,2));
7177
/*
7278
* #4
7379
* Function - mustBeTrue

0 commit comments

Comments
 (0)