Commit graph

5303 commits

Author SHA1 Message Date
Zearin
d78ce9ca32
Update article.md 2021-01-25 11:01:01 -05:00
Zearin
b93be7398a
Update article.md 2021-01-25 10:55:45 -05:00
Zearin
8806d5b8ec
Update article.md
Rewrote phrasing pointed out in feedback
2021-01-16 16:40:46 -05:00
Zearin
18417c349d
Update article.md
Edited according to feedback
2021-01-16 16:35:37 -05:00
Zearin
bda37e2b7b
Update article.md
Minor edits for grammar, phrasing, and markup.
2021-01-15 12:14:53 -05:00
Ilya Kantor
f797858498 closes #2398 2021-01-14 11:23:29 +03:00
Ilya Kantor
8eb6f97000 minor fixes 2021-01-13 23:44:22 +03:00
Ilya Kantor
99b2a0928f
Merge pull request #2437 from lumosmind/patch-68
typo
2021-01-13 21:31:54 +03:00
Ilya Kantor
9c082c82fd minor fixes 2021-01-13 21:31:15 +03:00
Mustafa Kemal Tuna
e95ca4b663
typo 2021-01-13 21:29:13 +03:00
Ilya Kantor
15e6f2da5b minor fixes 2021-01-13 21:20:50 +03:00
Ilya Kantor
4307531f03 Merge branch 'master' of github.com:javascript-tutorial/en.javascript.info 2021-01-13 20:01:23 +03:00
Ilya Kantor
bc8b37bafc minor fixes 2021-01-13 20:01:03 +03:00
Ilya Kantor
f6d3e300ca
Merge pull request #2429 from lumosmind/patch-61
each unit parts must be tested
2021-01-13 19:57:43 +03:00
Ilya Kantor
9c1a0fda22
Merge pull request #2431 from bilalbutt044/patch-1
Update article.md
2021-01-13 19:56:10 +03:00
Ilya Kantor
003d602069
Merge pull request #2432 from lumosmind/patch-62
individual test case for methods
2021-01-13 19:55:35 +03:00
Ilya Kantor
58e64562bb minor fixes 2021-01-13 19:54:44 +03:00
Ilya Kantor
c7d30726a2 closes #2433 2021-01-13 19:53:38 +03:00
Ilya Kantor
3c673ac64f
Merge pull request #2434 from lumosmind/patch-65
no need to "js run"
2021-01-13 19:52:04 +03:00
Ilya Kantor
09ec05c1d9 minor fixes 2021-01-13 19:49:09 +03:00
Mustafa Kemal Tuna
85fe7b8e5a
no need to "js run"
there is nothing to see when code is run. So run button for code can create some confusion.
2021-01-13 03:02:57 +03:00
Mustafa Kemal Tuna
09f8ca8659
individual test case for methods
to ensure completeness, every method should have their own individual test case.
2021-01-12 23:17:01 +03:00
Muhammad Bilal
73fd173f99
Update article.md
fix spelling of `further`
2021-01-12 23:16:01 +05:00
Ilya Kantor
eb3b360dc3 minor fixes 2021-01-12 11:11:40 +03:00
Mustafa Kemal Tuna
afd41eaf86
each unit parts must be tested
For completeness of the test cases we could add tests for the read method. So every method can have individual test cases.
2021-01-12 05:22:25 +03:00
Ilya Kantor
b9d5335b1d
Merge pull request #2425 from sarscode/sarscode-constructor-new-target
new.target is undefined not empty
2021-01-11 15:12:37 +03:00
Sani Rich
6b296c1770
new.target is undefined not empty
It is should be made know that `new.target` is `undefined` for regular function calls than say it is empty.
2021-01-11 13:09:58 +01:00
Ilya Kantor
468e355288
Merge pull request #2423 from lumosmind/patch-56
parameters are also local variables
2021-01-10 15:51:26 +03:00
Ilya Kantor
86a60219fb minor fixes 2021-01-10 15:50:14 +03:00
Mustafa Kemal Tuna
6a432df33b
parameters are also local variables
We can declare local variables and give them initial values in parameter list of function definition. So we have another way to create local variables.
2021-01-10 00:01:17 +03:00
Ilya Kantor
2027939238 minor fixes 2021-01-09 17:29:25 +03:00
Ilya Kantor
6113f338e5
Merge pull request #2422 from lapstjup/patch-1
Update currying function to use bind instead of wrapper pass
2021-01-09 17:16:36 +03:00
Ilya Kantor
12b23c74d9
Merge pull request #2417 from lumosmind/patch-55
all operators must return a value
2021-01-09 15:41:26 +03:00
Ilya Kantor
930485ba05
Merge pull request #2419 from TaylorClay/patch-1
Minor output typo
2021-01-09 15:41:05 +03:00
Ilya Kantor
18a60ab7a9
Merge pull request #2420 from martynov-94/patch-1
Update article.md
2021-01-09 15:40:55 +03:00
Ilya Kantor
3b7d493404 closes #2421 2021-01-09 15:39:22 +03:00
Lakshya Thakur
997f392f74
Add the (2) point reference 2021-01-09 17:40:25 +05:30
Lakshya Thakur
5965ae79a8
Update currying function to use bind instead of wrapper pass
I think this change will help us to dodge concatenating new arguments with lexical ones and make the currying function much simpler.
2021-01-09 17:00:00 +05:30
martynov-94
2229a48957
Update article.md
One redundant 'here' here
2021-01-08 09:59:17 +03:00
Taylor Clay
a2561dc123
Minor output typo
In the section describing the usage of `"super"`, example output says `// White Rabbit stands still. White rabbit hides!`

The `name` member in this example is set to `White Rabbit`, so the second sentence above should say `White Rabbit hides!` (capital R)
2021-01-07 16:37:44 -06:00
Mustafa Kemal Tuna
80c490153a
all operators must return a value
All operators should return a value because of the definition of the term 'operator'. 
I could not find an operator as an exception which doesn't return a value.
Do you?
2021-01-07 12:09:31 +03:00
Ilya Kantor
32518b7e76 minor 2021-01-07 06:33:40 +03:00
Ilya Kantor
c3505142e9 minor 2021-01-07 06:13:38 +03:00
Ilya Kantor
42ee1488af
Merge pull request #2395 from RapTho/patch-8
Reformulations
2021-01-05 00:57:10 +03:00
Ilya Kantor
51f3915141
Merge pull request #2390 from RapTho/patch-5
small reformulation
2021-01-05 00:56:44 +03:00
Ilya Kantor
c67f8b8af9
Merge pull request #2388 from RapTho/patch-4
small reformulations
2021-01-05 00:56:06 +03:00
Ilya Kantor
e730c5af43
Merge pull request #2416 from joaquinelio/patch-1
kotlin 404
2021-01-05 00:55:25 +03:00
joaquinelio
16ac39718c
kotlin 404 2021-01-04 06:09:50 -03:00
Ilya Kantor
039716de8a
Merge pull request #2389 from Danziger/patch-1
Add information about virtual/mobile keyboards and an additional keyboard event inspection tool.
2021-01-03 13:31:41 +03:00
Dani Gámez Franco
04b1313922
Remove keyjs.dev link under the key codes inspection snippet. 2021-01-03 11:21:28 +01:00