Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Question 303 README.md #272

Merged
merged 1 commit into from
Jun 10, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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) |
Expand Down Expand Up @@ -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++) {
Expand Down
Loading