Skip to content

Commit

Permalink
Update exercises.js
Browse files Browse the repository at this point in the history
  • Loading branch information
victorlhlee authored Feb 7, 2017
1 parent 50b8b06 commit a769ae5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions exercises.js
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
/*
If statements - Evaluates (or checks) a condition. If the condition is true, any statements in the subsequent code block are executed
*/
var today = new Date();
/*var today = new Date();
if(today === "Friday"){
return "Let's Party!";
};
};*/

/*
If/else statements = Evaluates (or checks) a condition. If the condition is true, the first code block is executed. If the condition is false, the second code block is executed instead.
*/

if(today === "Friday"){
/*if(today === "Friday"){
return "Let's Party!";
}else{
return "Get back to coding!";
};
};*/


/*
Expand Down

0 comments on commit a769ae5

Please sign in to comment.