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 fad0ebb commit fdd8698Copy full SHA for fdd8698
exercises.js
@@ -50,6 +50,14 @@ console.log(canVote(18))
50
* Console.log your result.
51
*/
52
53
+function login(password){
54
+ if(password === 'test1234'){
55
+ return 'Login Success!';
56
+ }else{
57
+ return 'Incorrect Password';
58
+ }
59
+}
60
+console.log(login('test1234'))
61
62
/*
63
* #3
0 commit comments