Skip to content
Merged
Show file tree
Hide file tree
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 .github/workflows/triage.lock.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions docs-index.html
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,8 @@ <h1>Documentation Files</h1>
<li><a href="https://raw.githubusercontent.com/DeveloperTryingToCodeLikeOtherOfThem/pxt-hardware-programming-docs/master/docs/numberFormat.md" target="_blank">numberFormat.md</a></li>
<li><a href="https://raw.githubusercontent.com/DeveloperTryingToCodeLikeOtherOfThem/pxt-hardware-programming-docs/master/docs/panic.md" target="_blank">panic.md</a></li>
<li><a href="https://raw.githubusercontent.com/DeveloperTryingToCodeLikeOtherOfThem/pxt-hardware-programming-docs/master/docs/panic_core.md" target="_blank">panic_core.md</a></li>
<li><a href="https://raw.githubusercontent.com/DeveloperTryingToCodeLikeOtherOfThem/pxt-hardware-programming-docs/master/docs/popScene.md" target="_blank">popScene.md</a></li>
<li><a href="https://raw.githubusercontent.com/DeveloperTryingToCodeLikeOtherOfThem/pxt-hardware-programming-docs/master/docs/pushScene.md" target="_blank">pushScene.md</a></li>
<li><a href="https://raw.githubusercontent.com/DeveloperTryingToCodeLikeOtherOfThem/pxt-hardware-programming-docs/master/docs/raw_infinite_for_loops.md" target="_blank">raw_infinite_for_loops.md</a></li>
<li><a href="https://raw.githubusercontent.com/DeveloperTryingToCodeLikeOtherOfThem/pxt-hardware-programming-docs/master/docs/reading-makecode-docs-clearly.md" target="_blank">reading-makecode-docs-clearly.md</a></li>
<li><a href="https://raw.githubusercontent.com/DeveloperTryingToCodeLikeOtherOfThem/pxt-hardware-programming-docs/master/docs/reading_rendered_help_sources.md" target="_blank">reading_rendered_help_sources.md</a></li>
Expand Down
9 changes: 9 additions & 0 deletions docs/JavaScript/loops/raw_for_loops.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
An infinite for loop is a loop that runs synchronously (operating).

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

The definition of an infinite loop is a bit unclear. The term "(operating)" doesn't clearly convey that the loop never terminates. Consider a more standard definition.

Suggested change
An infinite for loop is a loop that runs synchronously (operating).
An infinite for loop is a loop that never terminates and runs synchronously.


Here is a code snippet of it.

``` ts
for (;;) {
// Add code here
}
```
Loading