We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a86ee90 commit 36ffc89Copy full SHA for 36ffc89
exercises.js
@@ -57,7 +57,7 @@ function login(password){
57
}
58
59
60
-login(test1234);
+console.log(login('test1234'));
61
62
/*
63
* #3
@@ -72,7 +72,13 @@ login(test1234);
72
* Console.log your result.
73
*/
74
75
+function isGreaterThan(first, second){
76
+ if (first > second){
77
+ return true;
78
+ }
79
+}
80
81
+console.log(isGreaterThan(5 , 2));
82
83
84
* #4
0 commit comments