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 8d9b4d1 commit be4c2d7Copy full SHA for be4c2d7
exercises.js
@@ -48,6 +48,12 @@ console.log('test')
48
* Console.log your result.
49
*/
50
51
+function login(password){
52
+ if(password === "test1234"){
53
+ return "Login Success!"; }
54
+}
55
+
56
+console.log(login("test1234"))
57
58
/*
59
* #3
@@ -62,6 +68,14 @@ console.log('test')
62
68
63
69
64
70
71
+function isGreaterThan(first, second){
72
+if (first > second){
73
+ return true;
74
75
76
77
78
+console.log(isGreaterThan(3, 1));
65
79
66
80
67
81
0 commit comments