From 75958b77a5a26511e830311451a6fa61bff813ce Mon Sep 17 00:00:00 2001 From: Benji Date: Mon, 10 Jun 2024 09:56:47 +0000 Subject: [PATCH] Update Question 303 README.md minor corrections on Question 303 TOC and Answer --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index fde72034..3bf1e7df 100644 --- a/README.md +++ b/README.md @@ -328,7 +328,7 @@ | 300 | [How to set the cursor to wait](#how-to-set-the-cursor-to-wait) | | 301 | [How do you create an infinite loop](#how-do-you-create-an-infinite-loop) | | 302 | [Why do you need to avoid with statement](#why-do-you-need-to-avoid-with-statement) | -| 303 | [What is the output of below for loops](#what-is-the-output-of-below-for-loops) | +| 303 | [What is the output of the following for loops](#what-is-the-output-of-the-following-for-loops) | | 304 | [List down some of the features of ES6](#list-down-some-of-the-features-of-es6) | | 305 | [What is ES6](#what-is-es6) | | 306 | [Can I redeclare let and const variables](#can-i-redeclare-let-and-const-variables) | @@ -5531,7 +5531,7 @@ **[⬆ Back to Top](#table-of-contents)** -303. ### What is the output of below for loops +303. ### What is the output of the following for loops ```javascript for (var i = 0; i < 4; i++) {