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

Sync with upstream @ 58f6599d #34

Merged
merged 99 commits into from Sep 12, 2020
Merged

Sync with upstream @ 58f6599d #34

merged 99 commits into from Sep 12, 2020

Commits on Feb 7, 2020

  1. Update article.md

    My proposed change may not be right, but "make a request to URL" was unclear, and it's `fetch` that's used below to make the request. If 'request to URL' has some special meaning and is what you want to say, maybe some rephrasing is in order.
    paroche committed Feb 7, 2020

Commits on May 16, 2020

Commits on May 18, 2020

  1. Update article.md

    leeyc0 committed May 18, 2020
  2. Update article.md

    leeyc0 committed May 18, 2020

Commits on May 26, 2020

  1. Change to Tao Te Ching

    leeyc0 committed May 26, 2020
  2. Update article.md

    leeyc0 committed May 26, 2020
  3. Update article.md

    leeyc0 committed May 26, 2020

Commits on Jul 18, 2020

  1. Update article.md

    leviding committed Jul 18, 2020

Commits on Jul 23, 2020

  1. Update article.md

    haond10adp committed Jul 23, 2020
  2. One line of code creates a lot of confusing

    "// obj.toString === obj.__proto__.toString == Object.prototype.toString"
    It is look like JS code but it gives different result from what we want to get.
    There is different kind of equality operator ant these give more confusing what is the purpose of these?
    It can be better to separate this line into 2 line of code to make it sensible and readable.
    Subject and code is already hard but there is no need to make readers ask unnecessary questions.
    lumosmind committed Jul 23, 2020

Commits on Jul 24, 2020

  1. BigInt header grammar fix

    Aiyo
    Aiyo committed Jul 24, 2020

Commits on Jul 25, 2020

  1. clarifying example code

    An interesting question may arise in the example above: what’s the value of this inside set fullName(value)? Where are the properties this.name and this.surname written: into user or admin?
    
    The answer is simple: this is not affected by prototypes at all.
    
    No matter where the method is found: in an object or its prototype. In a method call, this is always the object before the dot.
    
    So, the setter call admin.fullName= uses admin as this, not user.
    
    That is actually a super-important thing, because we may have a big object with many methods, and have objects that inherit from it. And when the inheriting objects run the inherited methods, they will modify only their own states, not the state of the big object.
    
    The example code doesn't show these concepts. Also, these additions can make readers ask questions before the explanation of the example code.
    lumosmind committed Jul 25, 2020
  2. Update article.md

    peachesontour committed Jul 25, 2020

Commits on Jul 27, 2020

  1. Update article.md

    Small fixes.
    peachesontour committed Jul 27, 2020

Commits on Aug 8, 2020

  1. Typos

    peachesontour committed Aug 8, 2020

Commits on Aug 9, 2020

  1. Update article.md

    Added link to Brython Python transpiler to JavaScript
    redradist committed Aug 9, 2020
  2. Typos

    peachesontour committed Aug 9, 2020

Commits on Aug 11, 2020

Commits on Aug 13, 2020

Commits on Aug 16, 2020

  1. Update article.md

    peachesontour committed Aug 16, 2020

Commits on Aug 18, 2020

  1. Improve phrasing

    bookchiq committed Aug 18, 2020

Commits on Aug 22, 2020

  1. once in -> once every

    joaquinelio committed Aug 22, 2020

Commits on Aug 23, 2020

  1. Update article.md

    joaquinelio committed Aug 23, 2020
  2. Update article.md

    joaquinelio committed Aug 23, 2020
  3. Update solution.md

    AasthaSinha2305 committed Aug 23, 2020
  4. Update solution.md

    AasthaSinha2305 committed Aug 23, 2020
  5. add semicolon

    add semicolon 13,20 line
    sanghyo95 committed Aug 23, 2020

Commits on Aug 24, 2020

  1. Merge pull request #2076 from AasthaSinha2305/master

    Explained how to create a date object.
    iliakan committed Aug 24, 2020
  2. Removed the parts about browser compatibility

    `globalThis` is now supported in all major browsers, see link https://caniuse.com/#search=globalThis
    moisheschwartz committed Aug 24, 2020

Commits on Aug 25, 2020

  1. Typos

    peachesontour committed Aug 25, 2020

Commits on Aug 26, 2020

  1. Update article.md

    iliakan committed Aug 26, 2020
  2. Update article.md

    iliakan committed Aug 26, 2020

Commits on Aug 27, 2020

  1. updated size unit from "kb" to "KB" - [#2085]

    "kb" means "kilobit", some may confused about it.
    so It'll be better to changed as "KB", as intended.
    C17AN committed Aug 27, 2020
  2. Merge pull request #2086 from C17AN/patch-2

    updated size unit from "kb" to "KB" - [#2085]
    iliakan committed Aug 27, 2020
  3. Merge pull request #2026 from ghost/patch-1

    BigInt header grammar fix
    iliakan committed Aug 27, 2020
  4. Merge pull request #2078 from moisheschwartz/patch-1

    Removed the parts about browser compatibility
    iliakan committed Aug 27, 2020
  5. Merge pull request #2077 from sanghyo95/patch-1

    add semicolon
    iliakan committed Aug 27, 2020
  6. Merge pull request #2073 from joaquinelio/patch-1

    once in -> once every
    iliakan committed Aug 27, 2020
  7. Merge pull request #2069 from bookchiq/patch-1

    Improve phrasing
    iliakan committed Aug 27, 2020
  8. Merge pull request #2062 from yasath/patch-1

    Fixed "compatibility" spelling error
    iliakan committed Aug 27, 2020
  9. Merge pull request #2058 from arcticmatt/array-patch

    5.4 - change 7 basic types to eight basic types
    iliakan committed Aug 27, 2020
  10. Merge pull request #2054 from peachesontour/patch-7

    The solution here had no break, an infinite loop. Modified to match plunker example code
    iliakan committed Aug 27, 2020
  11. Merge pull request #2027 from lumosmind/patch-48

    clarifying example code
    iliakan committed Aug 27, 2020
  12. Merge pull request #2030 from peachesontour/patch-3

    Update article.md
    iliakan committed Aug 27, 2020
  13. Merge pull request #2051 from redradist/patch-1

    Update article.md with link to Brython
    iliakan committed Aug 27, 2020

Commits on Aug 30, 2020

  1. misplaced "too"?

    joaquinelio committed Aug 30, 2020
  2. Typos

    peachesontour committed Aug 30, 2020
  3. Typos

    peachesontour committed Aug 30, 2020

Commits on Aug 31, 2020

  1. internal link format info:

    plis check my syntax , I can't test
    joaquinelio committed Aug 31, 2020
  2. Merge pull request #2097 from joaquinelio/patch-2

    internal link format  info:
    iliakan committed Aug 31, 2020

Commits on Sep 1, 2020

  1. Update 2-ui/99-ui-misc/01-mutation-observer/article.md

    Co-authored-by: Muhammed Zakir <8190126+MuhammedZakir@users.noreply.github.com>
    peachesontour and MuhammedZakir committed Sep 1, 2020
  2. Update 2-ui/99-ui-misc/01-mutation-observer/article.md

    Co-authored-by: Muhammed Zakir <8190126+MuhammedZakir@users.noreply.github.com>
    peachesontour and MuhammedZakir committed Sep 1, 2020
  3. Update 2-ui/99-ui-misc/01-mutation-observer/article.md

    Co-authored-by: Muhammed Zakir <8190126+MuhammedZakir@users.noreply.github.com>
    peachesontour and MuhammedZakir committed Sep 1, 2020
  4. Update 2-ui/99-ui-misc/01-mutation-observer/article.md

    Co-authored-by: Muhammed Zakir <8190126+MuhammedZakir@users.noreply.github.com>
    peachesontour and MuhammedZakir committed Sep 1, 2020
  5. Update 2-ui/99-ui-misc/01-mutation-observer/article.md

    Co-authored-by: Muhammed Zakir <8190126+MuhammedZakir@users.noreply.github.com>
    peachesontour and MuhammedZakir committed Sep 1, 2020
  6. Update 2-ui/99-ui-misc/01-mutation-observer/article.md

    Co-authored-by: Muhammed Zakir <8190126+MuhammedZakir@users.noreply.github.com>
    peachesontour and MuhammedZakir committed Sep 1, 2020
  7. Update 2-ui/99-ui-misc/01-mutation-observer/article.md

    Co-authored-by: Muhammed Zakir <8190126+MuhammedZakir@users.noreply.github.com>
    peachesontour and MuhammedZakir committed Sep 1, 2020
  8. Update 2-ui/99-ui-misc/01-mutation-observer/article.md

    Co-authored-by: Muhammed Zakir <8190126+MuhammedZakir@users.noreply.github.com>
    peachesontour and MuhammedZakir committed Sep 1, 2020
  9. Update article.md

    peachesontour committed Sep 1, 2020
  10. Update 2-ui/99-ui-misc/03-event-loop/article.md

    Co-authored-by: Muhammed Zakir <8190126+MuhammedZakir@users.noreply.github.com>
    peachesontour and MuhammedZakir committed Sep 1, 2020
  11. Update 2-ui/99-ui-misc/03-event-loop/article.md

    Co-authored-by: Muhammed Zakir <8190126+MuhammedZakir@users.noreply.github.com>
    peachesontour and MuhammedZakir committed Sep 1, 2020
  12. Update 2-ui/99-ui-misc/01-mutation-observer/article.md

    Co-authored-by: Muhammed Zakir <8190126+MuhammedZakir@users.noreply.github.com>
    peachesontour and MuhammedZakir committed Sep 1, 2020

Commits on Sep 3, 2020

  1. minor fixes

    iliakan committed Sep 3, 2020
  2. add missing closing bracket

    Adding the missin closing bracket.
    yoga1234 committed Sep 3, 2020

Commits on Sep 4, 2020

  1. Update article.md

    Somewhat enhanced readability
    henchies committed Sep 4, 2020
  2. Typo

    "Imediately" instead of "Immediately"
    pushpend3r committed Sep 4, 2020

Commits on Sep 5, 2020

  1. minor fixes

    iliakan committed Sep 5, 2020
  2. Merge pull request #2100 from yoga1234/patch-1

    add missing closing bracket
    iliakan committed Sep 5, 2020
  3. Merge pull request #2101 from henchies/patch-2

    Update article.md
    iliakan committed Sep 5, 2020
  4. minor fixes

    iliakan committed Sep 5, 2020
  5. Merge pull request #2094 from Violet-Bora-Lee/mouse-event-typo

    fix typo and minor grammatical error
    iliakan committed Sep 5, 2020
  6. Merge pull request #2093 from Violet-Bora-Lee/class-inheritance-sugge…

    …stion
    
    suggestion to use alert method not console.log
    iliakan committed Sep 5, 2020
  7. Merge pull request #2092 from peachesontour/patch-10

    The last 2 code snippets shouldn't be runnable
    iliakan committed Sep 5, 2020
  8. Merge pull request #2091 from joaquinelio/patch-1

    misplaced "too"?
    iliakan committed Sep 5, 2020
  9. Merge pull request #1907 from leeyc0/patch-1

    Confucius never said black cat quote
    iliakan committed Sep 5, 2020
  10. Merge pull request #2015 from leviding/patch-21

    Delete a blank
    iliakan committed Sep 5, 2020
  11. minor fixes

    iliakan committed Sep 5, 2020
  12. Merge pull request #2024 from lumosmind/patch-47

    One line of code creates a lot of confusing
    iliakan committed Sep 5, 2020
  13. minor fixes

    iliakan committed Sep 5, 2020
  14. minor fixes

    iliakan committed Sep 5, 2020
  15. minor fixes

    iliakan committed Sep 5, 2020

Commits on Sep 7, 2020

  1. merging all conflicts

    iliakan committed Sep 7, 2020

Commits on Sep 12, 2020

  1. resolved conflicts

    theBstar committed Sep 12, 2020
  2. Removed extra new line

    theBstar committed Sep 12, 2020
You can’t perform that action at this time.