Skip to content

Commit a769ae5

Browse files
authored
Update exercises.js
1 parent 50b8b06 commit a769ae5

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

exercises.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
/*
22
If statements - Evaluates (or checks) a condition. If the condition is true, any statements in the subsequent code block are executed
33
*/
4-
var today = new Date();
4+
/*var today = new Date();
55
66
if(today === "Friday"){
77
return "Let's Party!";
8-
};
8+
};*/
99

1010
/*
1111
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.
1212
*/
1313

14-
if(today === "Friday"){
14+
/*if(today === "Friday"){
1515
return "Let's Party!";
1616
}else{
1717
return "Get back to coding!";
18-
};
18+
};*/
1919

2020

2121
/*

0 commit comments

Comments
 (0)