Ilya Kantor
be6856d4bc
closes #1532
2019-10-29 23:42:40 +03:00
Ilya Kantor
726f2a8385
Merge pull request #1535 from lumosmind/patch-7
...
Array type variables also support values() method
2019-10-29 23:40:33 +03:00
Ilya Kantor
77eedd82e8
Merge pull request #1538 from hrodward/patch-34
...
Update article.md
2019-10-29 23:39:48 +03:00
Ilya Kantor
8d45a7c839
Merge pull request #1539 from hrodward/patch-35
...
Update solution.md
2019-10-29 23:39:10 +03:00
Ilya Kantor
2964aa0d00
Merge pull request #1542 from lumosmind/patch-11
...
coding style conflict with the tutorial itself
2019-10-29 23:38:09 +03:00
Ilya Kantor
bb3f9aaa40
Merge pull request #1543 from lumosmind/patch-12
...
linked list must end with 'null'
2019-10-29 23:37:46 +03: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
Alexey Pyltsyn
7510263654
correction for code template consistency ( #1536 )
...
correction for code template consistency
2019-10-29 17:59:44 +03:00
Alexey Pyltsyn
0998fce43b
Removed extra "and" in a sentence ( #1537 )
...
Removed extra "and" in a sentence
2019-10-29 17:59:05 +03:00
Alexey Pyltsyn
d8958e227e
Update article.md ( #1533 )
...
Update article.md
2019-10-29 17:54:56 +03:00
lumosmind
95495bd5dc
linked list must end with 'null'
...
We need to put 'null' to end of linked list. otherwise wen we want to get last item in the linked list, it will be undefined. And this situation inconsistent with object literal definition of linked list above.
2019-10-29 16:50:37 +03:00
lumosmind
b32ce2c9a0
coding style conflict with the tutorial itself
...
variable user is using for both string and object type different values. these situation is called "ninja code" bu author :)
"Add a new variable only when absolutely necessary.
Instead, reuse existing names. Just write new values into them."
https://javascript.info/ninja-code
2019-10-29 15:36:57 +03:00
hrodward
54717a168b
Update solution.md
...
Grammar suggestions
2019-10-29 10:48:50 +01:00
hrodward
3e48d52ccb
Update article.md
...
Grammar suggestions
2019-10-29 10:41:32 +01:00
yogendra saxena
00bacf6c9c
Removed extra "and" in a sentence
...
Removed extra "and" in a sentence
2019-10-29 13:14:06 +05:30
lumosmind
9fb20768b0
correction for code template consistency
...
':' character is indicating 'var2' is a key of object.
2019-10-29 10:00:59 +03:00
Ilya Kantor
d5195b5d59
closes #1524 #716
2019-10-29 06:32:44 +03:00
lumosmind
634531a843
Array type variables also supports values()
...
arr.values() is supported by majority of browsers. So, maybe we need to change the exception in article.
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/values
2019-10-28 23:07:49 +03:00
Violet.Lee
24a6d296bd
Update article.md
2019-10-29 01:58:53 +09:00
Arian Alijani
7371945a46
Missed function expression semicolon
...
Adding missed semicolon in function expression example.
2019-10-28 17:57:22 +03:30
lumosmind
07a21c814f
add attribute defination to arr.find()
...
For consistency with definition of "arr.filter(fn)" , we need to add 'fn' parameter to definition of arr.find().
2019-10-28 17:21:26 +03:00
Alexey Pyltsyn
4159a65ea2
'str' inside of 'start' ( #1529 )
...
'str' inside of 'start'
2019-10-28 17:03:38 +03:00
Alexey Pyltsyn
2774d330ec
Update article.md ( #1528 )
...
Update article.md
2019-10-28 17:02:04 +03:00
Alexey Pyltsyn
c06f0dd625
string outputs without quotes ( #1527 )
...
string outputs without quotes
2019-10-28 17:00:52 +03:00
Alexey Pyltsyn
e15a63cf7a
Update article.md ( #1526 )
...
Update article.md
2019-10-28 16:59:47 +03:00
lumosmind
b5725a8be0
'str' inside of 'start'
...
splice method's minimum parameter is 'start' and it is number type. In this tutorial 'str' stands for string parameters.
2019-10-28 16:27:55 +03:00
Violet.Lee
bfb9b8900e
Update article.md
2019-10-28 19:31:49 +09:00
lumosmind
e70f039a59
string outputs without quotes
...
Some of string outputs are represented with quotes but some of not, there is a inconsistency.
2019-10-28 12:04:12 +03:00
hrodward
6a9bfe185e
Update article.md
...
Grammar suggestions
2019-10-28 09:31:19 +01:00
hrodward
2a82d42c71
Update article.md
...
Grammar suggestions
2019-10-28 08:07:01 +01:00
Ilya Kantor
db1e31bf4d
Merge pull request #1519 from hrodward/patch-22
...
Update article.md
2019-10-26 08:48:42 +03:00
Ilya Kantor
ec91bab3d0
Merge pull request #1521 from hrodward/patch-24
...
Update solution.md
2019-10-26 08:44:13 +03:00
Ilya Kantor
d048324744
Merge pull request #1505 from hrodward/patch-25
...
Update article.md
2019-10-26 08:41:20 +03:00
hrodward
2bd1854c55
Update solution.md
...
Wouldn't this solution be more flexible?
2019-10-25 14:25:44 +02:00
hrodward
a0168c7495
Update article.md
...
Grammar suggestions
2019-10-25 14:12:15 +02:00
Ilya Kantor
fac4413c60
Merge pull request #1504 from hrodward/patch-24
...
Update article.md
2019-10-25 14:20:31 +03:00
Ilya Kantor
86891b9fd7
Merge pull request #1514 from hrodward/patch-32
...
Update task.md
2019-10-25 14:16:33 +03:00
Ilya Kantor
321519e0a2
Merge pull request #1518 from hrodward/patch-22
...
Update article.md
2019-10-25 14:16:24 +03:00
Ilya Kantor
c62c84c181
Merge pull request #1492 from hrodward/patch-18
...
Update article.md
2019-10-25 14:16:03 +03:00
Ilya Kantor
9909b908da
minor
2019-10-25 13:31:06 +03:00
hrodward
ead158abb5
Update article.md
...
Grammar suggestions
2019-10-25 12:22:43 +02:00
Ilya Kantor
072fa7d7ac
minor
2019-10-25 13:13:21 +03:00
hrodward
0007368b32
Update article.md
...
Grammar suggestions
2019-10-25 11:08:52 +02:00
Alexey Pyltsyn
7f28d56117
Update article.md ( #1507 )
...
Update article.md
2019-10-24 12:05:58 +03:00
Alexey Pyltsyn
31d96a3ea9
Update article.md ( #1509 )
...
Update article.md
2019-10-24 12:05:24 +03:00
Alexey Pyltsyn
373a305248
Update article.md ( #1510 )
...
Update article.md
2019-10-24 12:04:26 +03:00
Alexey Pyltsyn
fab771fc0c
Update article.md ( #1511 )
...
Update article.md
2019-10-24 12:03:44 +03:00
hrodward
eb2b327aec
Update task.md
2019-10-24 11:03:21 +02:00