From 24b0dfc8d66bccf3f03b92d47cb476cf4c2b15d8 Mon Sep 17 00:00:00 2001 From: Karan <50290386+Sonawane-Karan26@users.noreply.github.com> Date: Tue, 26 Jul 2022 10:11:18 +0530 Subject: [PATCH] Update errata.md --- errata.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/errata.md b/errata.md index b1f2032..a99a925 100644 --- a/errata.md +++ b/errata.md @@ -27,13 +27,13 @@ if(hobby = "coding"){ Solution for [Exercise 14.4](https://github.com/PacktPublishing/JavaScript-from-Beginner-to-Professional/blob/main/Chapter%2014/Exercise_14.4.html) is now fixed. -## Chapter 05, Page 89 - Added the missing console.log statement to match the below given output +## Chapter 05, Page 89 - Added the missing `console.log` statement to match the output ``` while (notFound && someArray.length > 0) { if (someArray[0] === "Louiza") { console.log("Found her!"); notFound = false; - console.log("false"); + `console.log("false");` } else { someArray.shift(); }