Merge pull request #272 from MKSanic/patch-1

typo
This commit is contained in:
Jen Looper
2021-05-26 07:48:12 -07:00
committed by GitHub

View File

@@ -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!");
}
```