Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
micaiahcape committed May 13, 2019
1 parent a86ee90 commit 36ffc89
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion exercises.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ function login(password){
}
}

login(test1234);
console.log(login('test1234'));

/*
* #3
Expand All @@ -72,7 +72,13 @@ login(test1234);
* Console.log your result.
*/

function isGreaterThan(first, second){
if (first > second){
return true;
}
}

console.log(isGreaterThan(5 , 2));

/*
* #4
Expand Down

0 comments on commit 36ffc89

Please sign in to comment.