Ilya Kantor
419d5be43d
Merge pull request #333 from a-ogilvie/patch-1
...
Small changes for readability
2017-12-16 11:21:18 +03:00
Alexander Ogilvie
84163887c5
Small grammatical changes
...
Small changes to improve readability.
2017-12-15 19:11:22 +09:00
Alexander Ogilvie
1352092777
Small changes for readability
...
I got a little confused in one place (line 191) because the meaning wasn't clear. I also changed a couple of other places to make it read more naturally.
2017-12-15 18:54:58 +09:00
Ilya Kantor
0d81f751b1
Merge pull request #249 from usernamehw/patch-3
...
Update article.md
2017-11-01 13:30:29 +03:00
Ilya Kantor
0f1455da90
Merge branch 'master' of https://github.com/iliakan/javascript-tutorial-en
2017-11-01 12:57:35 +03:00
Ilya Kantor
973810d980
fixes
2017-11-01 12:57:29 +03:00
Ilya Kantor
b67884c998
Merge pull request #254 from usernamehw/patch-8
...
Update solution.md
2017-11-01 11:37:17 +03:00
Ilya Kantor
10927ec101
Merge pull request #255 from usernamehw/patch-9
...
Update solution.md
2017-11-01 11:37:00 +03:00
Ilya Kantor
0832633e7c
Merge pull request #256 from usernamehw/patch-10
...
Update task.md
2017-11-01 11:36:43 +03:00
Ilya Kantor
2440ab7349
Merge pull request #257 from usernamehw/patch-11
...
Update solution.md
2017-11-01 11:36:31 +03:00
Ilya Kantor
0eab9211b6
Merge pull request #265 from usernamehw/patch-12
...
Update article.md
2017-11-01 10:50:08 +03:00
Ilya Kantor
ff01c05d2a
Merge pull request #266 from usernamehw/patch-13
...
Update article.md
2017-11-01 10:49:49 +03:00
Ilya Kantor
0f0a844b83
Merge pull request #267 from usernamehw/patch-14
...
Update solution.md
2017-11-01 10:46:41 +03:00
Ilya Kantor
ecc4f6db1d
Merge pull request #268 from usernamehw/patch-15
...
Update article.md
2017-11-01 10:46:31 +03:00
Ilya Kantor
42ca672a5e
Merge pull request #269 from usernamehw/patch-16
...
Update article.md
2017-11-01 10:46:20 +03:00
Ilya Kantor
f9e237e966
Merge pull request #274 from usernamehw/patch-17
...
Update article.md
2017-11-01 10:43:21 +03:00
Ilya Kantor
a7b3c5c999
Merge pull request #253 from usernamehw/patch-7
...
Update task.md
2017-11-01 10:06:18 +03:00
Ilya Kantor
944f89caa4
Merge pull request #252 from usernamehw/patch-6
...
Update solution.md
2017-11-01 09:59:35 +03:00
Ilya Kantor
ce3e1e90b7
Merge pull request #251 from usernamehw/patch-5
...
Update solution.md
2017-11-01 09:59:24 +03:00
Alexander
81596758f8
Update article.md
2017-10-24 23:52:23 +03:00
Alexander
9a3580e02e
Update article.md
2017-10-22 02:12:56 +03:00
Alexander
4490ce64df
Update article.md
2017-10-22 01:28:13 +03:00
Alexander
6a766c007f
Update solution.md
2017-10-22 01:04:06 +03:00
Alexander
c2eea5dee6
Update article.md
2017-10-22 00:40:40 +03:00
Alexander
0f386b1848
Update article.md
2017-10-21 15:55:32 +03:00
Alexander
0d9af8a3bd
Update solution.md
2017-10-16 00:03:40 +03:00
Alexander
844f8324c5
Update task.md
2017-10-15 23:58:29 +03:00
Alexander
13719f808b
Update solution.md
2017-10-15 23:56:35 +03:00
Alexander
b202d616ec
Update solution.md
2017-10-15 23:54:43 +03:00
Alexander
62ca575e8c
Update solution.md
2017-10-15 23:48:29 +03:00
Alexander
2581e1de2c
Update task.md
2017-10-15 23:46:41 +03:00
Alexander
4e85f3ad6c
Update solution.md
2017-10-15 23:45:16 +03:00
Alexander
5b0e2ae585
Update solution.md
2017-10-15 23:40:32 +03:00
Alexander
b2869fe6c9
Update task.md
2017-10-15 23:36:38 +03:00
Alexander
00ad9b52a5
Update article.md
2017-10-15 23:32:17 +03:00
Ilya Kantor
24411a8de8
Merge pull request #244 from usernamehw/patch-2
...
Update article.md
2017-10-15 18:02:37 +03:00
Alexander
089af82ee2
Update article.md
2017-10-14 11:31:13 +03:00
Alexander
50e6a1571d
Typos
2017-10-14 01:19:47 +03:00
Ilya Kantor
de725bd171
up
2017-10-11 14:18:27 +03:00
Ilya Kantor
61f92a158c
Merge pull request #235 from amid11/patch-1
...
Fix for replacing the middle item in an Array
2017-10-07 17:04:53 +03:00
Johann Miller
34c0a5a704
Fix typo: 'pop to end' in Arrays:Stacks
2017-10-06 16:01:26 -04:00
Amid Dadgar
70d1d874f6
Fix for replacing the middle item in an Array
...
the provided code `styles[(styles.length - 1) / 2] = "Classics";` will replace the last item instead of the middle one. in order to fix that we need to change code like this : `styles[Math.floor((styles.length - 1) / 2)] = "Classics";`
2017-10-06 17:05:26 +03:30
Ilya Kantor
cceb7cbcc8
Merge pull request #232 from GeorgySerga/patch-5
...
Fix typo, 08-keys-values-entries
2017-10-03 00:46:38 +03:00
Georgy
4f584b0515
Fix typo, 08-keys-values-entries
2017-10-02 14:47:40 -04:00
Georgy
2be0ffd289
Fix typos, 07-map-set-weakmap-weakset
2017-10-02 14:29:44 -04:00
Ilya Kantor
60985627bb
Merge pull request #224 from usernamehw/patch-6
...
Typo
2017-10-01 07:25:53 +03:00
Ilya Kantor
a0d60d7516
Merge pull request #227 from ozimos/patch-2
...
Update article.md
2017-10-01 07:25:01 +03:00
Alexander
fd1eaf40b6
Typo & spacing
2017-09-29 04:39:12 +03:00
Tovieye Moses Ozi
60609fbd74
Update article.md
2017-09-28 22:42:41 +01:00
Alexander
560eb0e9b4
Typo
2017-09-28 07:47:39 +03:00