Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
a78e9d5
Change potentially confusing statement
romanstetsyk Oct 1, 2022
8c256ae
Update article.md
nikolai-chernolutskii Jan 29, 2023
9a90dc1
Fix typo
scottwright-dev Jan 31, 2023
55269bb
Update grammar
gitwinst Mar 2, 2023
87bfe5b
docs: replace figure brackets with curly braces across all occurrences
swapnasahoo Feb 17, 2026
0354326
Merge branch 'master' into setTimeout
smith558 Feb 25, 2026
c0904ea
Merge pull request #3210 from romanstetsyk/setTimeout
smith558 Feb 25, 2026
b76f5c7
Merge pull request #3347 from scottwright-dev/patch-1
smith558 Feb 25, 2026
c6695ed
Merge pull request #3389 from gitwinst/patch-1
smith558 Feb 25, 2026
f3e09c8
Merge branch 'master' into docs/figure-brackets-to-curly-braces
swapnasahoo Feb 26, 2026
953c2db
Improve coding style
smith558 Feb 26, 2026
7f94b0a
Merge pull request #3936 from swapnasahoo/docs/figure-brackets-to-cur…
smith558 Feb 26, 2026
ff804bc
Merge pull request #3341 from nikolai-chernolutskii/patch-3
smith558 Feb 26, 2026
9661797
merging all conflicts
iliakan Mar 2, 2026
64e680f
Update 1-js/02-first-steps/04-variables/article.md
gabifs Mar 6, 2026
fa622b0
Update 1-js/02-first-steps/04-variables/article.md
gabifs Mar 6, 2026
fd022ec
Update 1-js/02-first-steps/08-operators/article.md
gabifs Mar 6, 2026
a3d8cce
Update 1-js/02-first-steps/08-operators/article.md
gabifs Mar 6, 2026
0e6d155
Update 1-js/03-code-quality/02-coding-style/1-style-errors/solution.md
gabifs Mar 6, 2026
cc2d3f7
Update 1-js/03-code-quality/02-coding-style/1-style-errors/solution.md
gabifs Mar 6, 2026
c1a7837
Update 1-js/04-object-basics/01-object/article.md
gabifs Mar 6, 2026
134ed82
Update 1-js/04-object-basics/01-object/article.md
gabifs Mar 6, 2026
d7dddb3
Update 1-js/04-object-basics/01-object/article.md
gabifs Mar 6, 2026
2a23e93
Update 1-js/04-object-basics/01-object/article.md
gabifs Mar 6, 2026
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
2 changes: 1 addition & 1 deletion 1-js/05-data-types/10-destructuring-assignment/article.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ That works, because internally a destructuring assignment works by iterating ove
````


````smart header="Assign to anything at the left-side"
````smart header="Assign to anything on the left-side"
We can use any "assignables" on the left side.

For instance, an object property:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ And here is the picture for the nested `setTimeout`:

![](settimeout-interval.svg)

**The nested `setTimeout` guarantees the fixed delay (here 100ms).**
**The nested `setTimeout` ensures a minimum delay (100ms here) between the end of one call and the beginning of the subsequent one.**

That's because a new call is planned at the end of the previous one.

Expand Down