Merge pull request #1 from code2forever/code2forever-patch-1

Updated 4-arrays-loops
pull/966/head
Kalash Agrahari 3 years ago committed by GitHub
commit e8b3b664f6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -77,6 +77,8 @@ The `for` loop requires 3 parts to iterate:
- `condition` Expression that uses comparison operators to cause the loop to stop when `false`
- `iteration-expression` Runs at the end of each iteration, typically used to change the counter value
✅ Note: All the above mentioned three parts are optional you can skip any of them or all of them to get different results.
```javascript
// Counting up to 10
for (let i = 0; i < 10; i++) {

Loading…
Cancel
Save