From 27a688f947e1ceeb33e6e329d2e8e5fca2644b2b Mon Sep 17 00:00:00 2001 From: MKSanic <76942402+MKSanic@users.noreply.github.com> Date: Wed, 26 May 2021 16:46:21 +0800 Subject: [PATCH] Update README.md --- 2-js-basics/3-making-decisions/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/2-js-basics/3-making-decisions/README.md b/2-js-basics/3-making-decisions/README.md index 89df8ae1..66e5d35a 100644 --- a/2-js-basics/3-making-decisions/README.md +++ b/2-js-basics/3-making-decisions/README.md @@ -72,7 +72,7 @@ if (currentMoney >= laptopPrice){ console.log("Getting a new laptop!"); } else{ - //Condition was true. Code in this block will run. + //Condition was false. Code in this block will run. console.log("Can't afford a new laptop, yet!"); } ```