Ilya Kantor
165ea8373c
Merge pull request #2125 from shanesc/patch-1
...
Add Edge to list of V8-powered browsers
2020-09-24 10:42:03 +03:00
Ilya Kantor
e61bfa2631
minor fixes
2020-09-23 12:42:10 +03:00
MuhammedZakir
fdf8eb3f8c
Improve make-army task
...
Fix grammar and indent some paragraphs.
Complements javascript-tutorial/en.javascript.info#2081 .
2020-09-18 12:30:52 +05:30
Shane
a4b95f05a9
Add Edge to list of V8-powered browsers
2020-09-17 17:21:11 +01:00
Ilya Kantor
17faacf683
minor
2020-09-12 15:11:25 +03:00
Ilya Kantor
9f686c90ce
improve makeArmy task
2020-09-10 19:29:57 +03:00
Ilya Kantor
c65a1e85b8
WIP
2020-09-10 19:02:34 +03:00
Muhammed Zakir
9f099db565
Update solution.md
2020-09-10 14:42:04 +00:00
MuhammedZakir
0f5b63d86f
Restructure the Solution for 'Army of Functions' task and Fix Typos
...
Fix #2068 - Army of Functions
Fix #2070 - Typo
Fix #2056 - Grammatical Error
Fix #2074 - Remove semi-colon after function declaration
2020-09-04 13:38:41 +05:30
Ilya Kantor
3a924fc1e8
minor fixes
2020-08-10 22:52:57 +03:00
Ilya Kantor
fbf443e414
minor fixes
2020-08-09 21:03:34 +03:00
Ilya Kantor
2bf8a27fad
minor fixes
2020-08-09 21:02:40 +03:00
Ilya Kantor
1cfd422270
minor fixes
2020-08-09 21:02:05 +03:00
Pushpender
eb49cb9345
Type mistake
...
Used "unitialized" instead of "uninitialized"
2020-07-02 23:18:39 +05:30
Peter Roche
e4e6a50b57
'where finds it and changes' -> 'where it finds and changes it'
...
Was tempted to suggest something a bit wordier: "where it finds it and, in this case, changes it", but I thought this would do.
2020-06-21 03:51:06 -06:00
Peter Roche
1f7b137e64
'since this moment' -> 'from this point forward'
2020-06-21 03:26:05 -06:00
Ilya Kantor
f5a3f379a4
minor fixes
2020-06-08 11:07:46 +03:00
Ilya Kantor
c2c080ed8e
minor fixes
2020-06-08 11:04:16 +03:00
Logan Schelly
a0383c07c0
Add test cases for 1-js/06-advanced-functions/03-closure/9-sort-by-field
...
Just a simple check to see if the code works on the example given in the task.
2020-06-04 23:07:25 -06:00
Michael McGee
9900be90a7
Edit sentance syntax in closure article
2020-03-24 18:04:26 +10:30
Violet Bora Lee
958cbe72b8
minor fixes
...
- fix erratas
- fix wrong error message
- add 'run' on runnable example
- add explanation about window.onload property corresponding load event
- add comment about window.onstorage property corresponding storage event
2020-03-14 07:27:49 +09:00
LeviDing
33c2a4e39d
Update article.md
2020-02-23 17:49:11 +08:00
Ilya Kantor
c2a9c2da58
closure task
2019-12-29 00:33:46 +03:00
Ilya Kantor
964ed57c42
closure
2019-12-26 14:59:57 +03:00
Ilya Kantor
22cab45a69
Merge pull request #1606 from jakewilson/patch-1
...
Fix small grammar mistake in closure makeArmy task
2019-11-30 10:50:09 +03:00
Ilya Kantor
4587fde235
re-import images (Sketch update)
2019-11-30 08:51:52 +03:00
Jake Wilson
9a07b1fb23
Fix small grammar mistake in closure makeArmy task
2019-11-12 19:26:58 +00:00
Ilya Kantor
e8947f7b58
Merge pull request #1546 from lumosmind/patch-14
...
function declaration vs function call conflict
2019-10-29 23:36:20 +03:00
Ilya Kantor
c5c94bce3b
closes #1547
2019-10-29 23:35:35 +03:00
lumosmind
97cd2fca8d
function declaration vs function call conflict
...
function() { return count++; } is running because it is a function declaration. It is running and result of this running a function has been created and sent as a parameter to return command. "return count++;" this part is not running because the function has not been called yet.
2019-10-29 21:33:42 +03:00
Ilya Kantor
bb2a2594d8
Merge pull request #1465 from hrodward/patch-4
...
Update article.md
2019-10-17 10:58:13 +03:00
Ilya Kantor
519770187c
Merge pull request #1466 from hrodward/patch-6
...
Update article.md
2019-10-17 10:58:03 +03:00
Ilya Kantor
615609e19c
Merge pull request #1467 from hrodward/patch-7
...
Update article.md
2019-10-17 10:57:25 +03:00
hrodward
e014aa43c1
Update article.md
...
Grammatical fixes
2019-10-16 15:07:48 +02:00
hrodward
994c76ba8a
Update article.md
...
Punctuation marks fixes
2019-10-16 10:56:28 +02:00
hrodward
ba221014a4
Update article.md
...
Minor fixes
2019-10-16 10:50:03 +02:00
hrodward
f2e6a182fd
Update article.md
...
Use of "till" is informal: https://dictionary.cambridge.org/grammar/british-grammar/until
2019-10-16 10:27:54 +02:00
hrodward
8d41acba64
Update article.md
...
Grammatical fix
2019-10-16 10:22:26 +02:00
Ilya Kantor
7418213b66
re-import images from Sketch (no changes)
2019-10-10 17:08:16 +03: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
paroche
d3b5889e65
Update article.md
2019-08-23 19:55:06 -06:00
Ilya Kantor
9bfc8cfa9c
minor
2019-08-11 14:24:31 +03:00
Ilya Kantor
4d44df6a3a
Embed font to SVG
2019-08-11 14:17:38 +03:00
Ilya Kantor
e52705e012
fixes
2019-08-02 13:48:10 +03:00
Ilya Kantor
d606fb7181
minor
2019-08-02 12:29:57 +03:00
Ilya Kantor
515e5fd318
minor
2019-08-02 12:29:13 +03:00
daGo
63acd3dd7d
fix phrasing by deleting superfluous word
...
provides has -> provides
2019-08-02 10:11:43 +03:00
Ilya Kantor
02d1b767a8
up
2019-07-31 23:21:06 +03:00
Ilya Kantor
715d5e728d
up
2019-07-31 23:20:04 +03:00
Ilya Kantor
b6adf0b6aa
up
2019-07-31 23:18:20 +03:00