Commit graph

3801 commits

Author SHA1 Message Date
Ilya Kantor
74efc83650 fix 2019-10-10 11:07:47 +03:00
Ilya Kantor
aee2bd2ca6 fix 2019-10-10 11:07:05 +03:00
Ilya Kantor
a57edc1036
Merge pull request #1425 from henchies/patch-1
Update article.md
2019-10-10 11:00:16 +03:00
Ilya Kantor
3bd57892c6
Merge pull request #1424 from jamesblckwell/patch-1
Fixed typo on line 366
2019-10-10 10:59:53 +03:00
Ilya Kantor
6ae01a002d
Merge pull request #1422 from anuragbhd/patch-4
Fix minor typos in Server Sent Events lesson
2019-10-10 10:59:38 +03:00
Ilya Kantor
59e01a7b41
Merge pull request #1421 from paroche/patch-51
Update article.md
2019-10-10 10:59:18 +03:00
Ilya Kantor
1a03d6b405
Merge pull request #1429 from paroche/patch-52
Update article.md
2019-10-10 10:56:20 +03:00
Ilya Kantor
32c2432f95
Merge branch 'master' into patch-52 2019-10-10 10:55:49 +03:00
Ilya Kantor
b050edecbc
Merge pull request #1430 from paroche/patch-53
Update article.md
2019-10-10 10:55:22 +03:00
Ilya Kantor
ef44485218
Merge pull request #1432 from paroche/patch-56
Update article.md
2019-10-10 10:53:47 +03:00
Ilya Kantor
f642b650d3
Merge pull request #1433 from paroche/patch-57
Update article.md
2019-10-10 10:52:53 +03:00
Ilya Kantor
9e00b2af41
Merge pull request #1434 from paroche/patch-58
Update article.md
2019-10-10 10:52:37 +03:00
Ilya Kantor
d404d93611
Merge pull request #1435 from paroche/patch-59
Update article.md
2019-10-10 10:52:20 +03:00
Ilya Kantor
933861dec6
Merge pull request #1436 from paroche/patch-60
Update article.md
2019-10-10 10:52:05 +03:00
Ilya Kantor
3008f26a41
Merge pull request #1438 from chrisshyi/patch-1
Fix minor grammatical error
2019-10-10 10:51:48 +03:00
Ilya Kantor
fba8458f34
Merge pull request #1439 from paroche/patch-61
Update article.md
2019-10-10 10:51:35 +03:00
Ilya Kantor
15052487ea
Merge pull request #1440 from paroche/patch-62
Update article.md
2019-10-10 10:51:09 +03:00
paroche
fe7ffe0130
Update article.md
if -> ifs
Phrasing, punctuation.
2019-10-09 21:08:28 -06:00
paroche
f66d4211aa
Update article.md
rephrasing
2019-10-09 20:38:00 -06:00
Chris Shyi
466f99568f
Fix minor grammatical error 2019-10-10 08:23:56 +08:00
paroche
91b17f3bf0
Update article.md
'allow to' -> 'allow us to'
optional comma
2019-10-08 20:32:15 -06:00
paroche
169fa7bafe
Update article.md
Add a comma, minor wording adjustments
2019-10-08 19:44:47 -06:00
paroche
38ba46f0a0
Update article.md
Added 'Oxford comma" (comma before 'and' at the end of a list). Not all consider it necessary, but I think it improves readability.
2019-10-08 19:39:00 -06:00
paroche
cd1a23b9bd
Update article.md
Summary -- adding 'adding' and 'happening'.
2019-10-08 19:14:36 -06:00
paroche
5c11c5458c
Update article.md
listen to -> listen for
some punctuation, little words
2019-10-08 19:03:36 -06:00
paroche
e4c81a6af5
Update article.md
allows to -> allows us to
2019-10-08 18:43:57 -06:00
paroche
b9668eee3c
Update article.md
Events is -> Events are
2019-10-08 18:41:25 -06:00
Henrik Nilsson
a93fdf4d90
Update article.md 2019-10-08 09:08:43 +02:00
jamesblckwell
f24a6e577b
Fixed typo on line 366
"Now when the call looks for `count` variable, it first searches its own Lexical Environment (empty), then the Lexical Environment of the outer `makeCounter()` call, where finds it."

to
 
"Now when the call looks for `count` variable, it first searches its own Lexical Environment (empty), then the Lexical Environment of the outer `makeCounter()` call, where it finds it."
2019-10-07 12:05:39 +01:00
Ilya Kantor
a88e082ef9 minor 2019-10-07 13:30:49 +03:00
Anurag Bhandari
e301bf3bd4
Fix minor typos in Server Sent Events lesson 2019-10-07 11:04:07 +05:30
paroche
f889f3ed43
Update article.md
'That's funny' -> 'It's funny'
2019-10-06 22:14:58 -06:00
paroche
24d5411a0e
Update article.md
and -> or, methods -> methods

I also have a question on the subject of this sentence (should this be a separate discussion entry?):
In the "Extending built-in classes" article, in the "No static inheritance in built-ins" subsection, one finds:

"But built-in classes are an exception. They don’t inherit statics from each other.

For example, both Array and Date inherit from Object, so their instances have methods from Object.prototype. But Array.[[Prototype]] does not reference Object, so there’s no Array.keys() and Date.keys() static methods."

In the "Extending built-in classes" article, in the "No static inheritance in built-ins" subsection, one finds:

"But built-in classes are an exception. They don’t inherit statics from each other.

For example, both Array and Date inherit from <code>Object</code>, so their instances have methods from <code>Object.prototype</code>. But <code>Array.[[Prototype]]</code> does not reference <code>Object</code>, so there’s no <code>Array.keys()</code> and <code>Date.keys()</code> static methods."

This is a subject of some curiosity for me. Through a little testing, I believe I have found that, in fact <code>Array.[[Prototype]]</code> DOES, however, reference <code>Function.prototype</code>, i.e. <code>Array.__proto__ === Function.prototype</code> (<code>true</code>). (As does <code>Date.[[Prototype]]</code>). Is there someplace where this is explained? (Preferably in a way an intelligent 11-year-old could understand?).
2019-10-06 21:53:42 -06:00
Ilya Kantor
71ff8f81b0
Merge pull request #1409 from dashaezhova/patch-1
Update article.md
2019-10-07 04:48:44 +03:00
Ilya Kantor
f1d070f517
Merge pull request #1413 from paroche/patch-44
Update article.md
2019-10-07 04:48:20 +03:00
Ilya Kantor
3cdec02961
Merge pull request #1414 from paroche/patch-47
Update article.md
2019-10-07 04:48:06 +03:00
Ilya Kantor
c0d8fdbfff
Merge branch 'master' into patch-47 2019-10-07 04:46:50 +03:00
Ilya Kantor
cd3774bcae
Merge pull request #1415 from paroche/patch-49
Update article.md
2019-10-07 04:45:57 +03:00
Ilya Kantor
07cb1af37f
Merge pull request #1416 from paroche/patch-50
Update article.md
2019-10-07 04:45:43 +03:00
Ilya Kantor
ab068342c6
Merge pull request #1417 from paroche/patch-51
Update article.md
2019-10-07 04:45:30 +03:00
Ilya Kantor
44bf5ecb65
Merge pull request #1418 from paroche/patch-52
Update article.md
2019-10-07 04:45:16 +03:00
Ilya Kantor
beb9de06ad
Merge pull request #1419 from ikeq/patch-1
Remove unnecessary code syntax inside buttons
2019-10-07 04:45:00 +03:00
Ilya Kantor
1fcccd7978
Merge pull request #1407 from scott-ln/patch-1
Minor fixes for consistency
2019-10-07 04:44:26 +03:00
Elmore Cheng
5c515bbfad
Remove unnecessary code syntax inside buttons 2019-10-06 17:06:03 +08:00
paroche
947cdbb031
Update article.md
'chapter' -> 'article'
2019-10-04 20:08:40 -06:00
paroche
4d1a006591
Update article.md
object constructor -> the object's constructor
2019-10-04 19:50:29 -06:00
paroche
45c2e1d91a
Update article.md
Add results of 2nd alert
2019-10-04 15:51:09 -06:00
Alexey Pyltsyn
aa0c451dd5
[Fetch: Cross-Origin Requests] Fix grammatical errors (#1410)
[Fetch: Cross-Origin Requests] Fix grammatical errors
2019-10-04 08:57:07 +03:00
paroche
918227fcba
Update article.md
Replaced ":"s with ","s. 

I edited these lines before, and thought they were a little awkward w/ ":"s, but didn't see fit to change it then. But now ","s seem clearly better. Think of it as successive approximations.
2019-10-03 18:42:06 -06:00
paroche
25b414d182
Update article.md
Replaced 'the ... property ... works since" with "the ... property ... has worked since".
2019-10-03 18:36:59 -06:00