Skip to content

Commit 36ffc89

Browse files
committed
1 parent a86ee90 commit 36ffc89

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
@@ -57,7 +57,7 @@ function login(password){
5757
}
5858
}
5959

60-
login(test1234);
60+
console.log(login('test1234'));
6161

6262
/*
6363
* #3
@@ -72,7 +72,13 @@ login(test1234);
7272
* Console.log your result.
7373
*/
7474

75+
function isGreaterThan(first, second){
76+
if (first > second){
77+
return true;
78+
}
79+
}
7580

81+
console.log(isGreaterThan(5 , 2));
7682

7783
/*
7884
* #4

0 commit comments

Comments
 (0)