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

Improves readability of code examples #224

Open
wants to merge 3 commits into
base: main
Choose a base branch
from

Commits on May 19, 2024

  1. Update README.md

    Improves readability especially for beginners.
    * When comparing, using `===` instead of `==` is just a good practice. Additionally, stops reader from questions "Can this be null or undefined? Do I need to read docs?".
    * Changing `let` to `const` separates things that change from those that don't change, so reader don't have to keep in mind all variables.
    * Adding extra brackets to `for` emphasis there is a code on the same line and reader should not jump directly to the next line.
    tomasbonco authored May 19, 2024
    Configuration menu
    Copy the full SHA
    934727f View commit details
    Browse the repository at this point in the history
  2. Update README.md

    tomasbonco authored May 19, 2024
    Configuration menu
    Copy the full SHA
    3925e15 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    2a032f2 View commit details
    Browse the repository at this point in the history