From a769ae54e641dd77c43c4d2bdb62df18dc2f3953 Mon Sep 17 00:00:00 2001 From: victorlhlee Date: Mon, 6 Feb 2017 21:31:52 -1000 Subject: [PATCH] Update exercises.js --- exercises.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/exercises.js b/exercises.js index 8e1cbfc..e0d51c7 100644 --- a/exercises.js +++ b/exercises.js @@ -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!"; -}; +};*/ /*