Violet Bora Lee
3aaf519ca2
suggestion to use alert method not console.log
2020-08-30 19:53:28 +09:00
Ilya Kantor
f830bc5d94
Merge pull request #2051 from redradist/patch-1
...
Update article.md with link to Brython
2020-08-27 23:38:57 +03:00
Ilya Kantor
32cf594e90
Merge pull request #2027 from lumosmind/patch-48
...
clarifying example code
2020-08-27 23:36:55 +03:00
Ilya Kantor
ba6ae24c61
Merge pull request #2058 from arcticmatt/array-patch
...
5.4 - change 7 basic types to eight basic types
2020-08-27 23:35:29 +03:00
Ilya Kantor
71988e17b0
Merge pull request #2069 from bookchiq/patch-1
...
Improve phrasing
2020-08-27 16:48:53 +03:00
Ilya Kantor
f983992700
Merge pull request #2077 from sanghyo95/patch-1
...
add semicolon
2020-08-27 16:47:38 +03:00
Ilya Kantor
c28563b7c7
Merge pull request #2078 from moisheschwartz/patch-1
...
Removed the parts about browser compatibility
2020-08-27 16:47:17 +03:00
Ilya Kantor
689b1c43fe
Merge pull request #2026 from ghost/patch-1
...
BigInt header grammar fix
2020-08-27 16:45:17 +03:00
Moses Schwartz
b946ee04c9
Removed the parts about browser compatibility
...
`globalThis` is now supported in all major browsers, see link https://caniuse.com/#search=globalThis
2020-08-24 10:33:22 -04:00
sanghyo95
3b71f769a7
add semicolon
...
add semicolon 13,20 line
2020-08-24 08:54:34 +09:00
Aastha Sinha
37287af523
Update solution.md
2020-08-24 02:14:52 +05:30
Aastha Sinha
243a1d3276
Update solution.md
2020-08-23 18:06:06 +05:30
AasthaSinha2305
44bc57ee91
Date object explained clearly
2020-08-23 18:01:21 +05:30
Ilya Kantor
b85413d0bd
Update task.md
2020-08-22 10:46:56 +03:00
Ilya Kantor
858b733ce0
Update task.md
2020-08-22 10:45:44 +03:00
Sarah Lewis
bbaa75b59e
Improve phrasing
2020-08-18 16:28:35 -07:00
Violet Bora Lee
665b97251c
delete unused line
2020-08-16 17:27:21 +09:00
Matt Lim
a6c9f30cb8
5.4 - change 7 basic types to eight basic types
2020-08-10 23:02:31 -07:00
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
Denis
0557a16f81
Update article.md
...
Added link to Brython Python transpiler to JavaScript
2020-08-09 20:25:22 +03:00
Ilya Kantor
7907cd667c
minor fixes
2020-08-04 10:33:40 +03:00
Ilya Kantor
f0ad0bafa2
minor fixes
2020-08-04 10:30:25 +03:00
Ilya Kantor
fb4dda68e5
minor fixes
2020-08-04 10:30:13 +03:00
Ilya Kantor
d2f7d14288
minor fixes
2020-08-04 10:29:38 +03:00
Ilya Kantor
0e592a95c7
minor fixes
2020-08-04 10:29:29 +03:00
Ilya Kantor
4133532cd8
minor fixes
2020-08-04 10:29:19 +03:00
Ilya Kantor
0f7443b5df
minor fixes
2020-08-04 09:25:45 +03:00
Mustafa Kemal Tuna
05e1878b3d
refactoring
...
more readable and more modern way
2020-07-30 00:32:44 +03:00
Mustafa Kemal Tuna
7d0d65478d
clarifying example code
...
An interesting question may arise in the example above: what’s the value of this inside set fullName(value)? Where are the properties this.name and this.surname written: into user or admin?
The answer is simple: this is not affected by prototypes at all.
No matter where the method is found: in an object or its prototype. In a method call, this is always the object before the dot.
So, the setter call admin.fullName= uses admin as this, not user.
That is actually a super-important thing, because we may have a big object with many methods, and have objects that inherit from it. And when the inheriting objects run the inherited methods, they will modify only their own states, not the state of the big object.
The example code doesn't show these concepts. Also, these additions can make readers ask questions before the explanation of the example code.
2020-07-25 05:38:45 +03:00
Aiyo
f19c56b15d
BigInt header grammar fix
2020-07-24 10:22:22 +02:00
Ilya Kantor
8e1f438a5b
Merge pull request #1990 from lumosmind/patch-43
...
more definitive title
2020-07-23 23:09:25 +03:00
Mustafa Kemal Tuna
41766c939e
grammar fix
2020-07-23 22:31:55 +03:00
Mustafa Kemal Tuna
8f3831be1c
One line of code creates a lot of confusing
...
"// obj.toString === obj.__proto__.toString == Object.prototype.toString"
It is look like JS code but it gives different result from what we want to get.
There is different kind of equality operator ant these give more confusing what is the purpose of these?
It can be better to separate this line into 2 line of code to make it sensible and readable.
Subject and code is already hard but there is no need to make readers ask unnecessary questions.
2020-07-23 13:51:13 +03:00
Nguyễn Đức Hào
85b1e7aa34
Update article.md
2020-07-23 11:59:32 +07:00
Mustafa Kemal Tuna
b70f9498d1
grammatical fix
2020-07-21 20:27:36 +03:00
Mustafa Kemal Tuna
4fdf4c3083
to make binding more clear
...
understanding "pre-bound value" can be little bit hard.
2020-07-21 19:04:09 +03:00
LeviDing
c2f8c4fb9e
Update article.md
2020-07-18 23:32:51 +08:00
Ilya Kantor
ae1171069c
Merge pull request #1970 from rromanenko/patch-1
...
Update article.md
2020-07-18 14:16:30 +03:00
Ilya Kantor
04c0570e22
Merge pull request #1974 from akymtl/patch-3
...
Update article.md
2020-07-18 14:15:51 +03:00
Ilya Kantor
5e74d7cbf6
Merge pull request #1975 from traxium/patch-1
...
Fix typo in /instanceof section (widow -> Window)
2020-07-18 14:15:42 +03:00
Ilya Kantor
83793dc968
Merge pull request #1976 from DanGhanbari/patch-1
...
update solution.md
2020-07-18 14:15:22 +03:00
Ilya Kantor
86222ff911
Merge pull request #1978 from peachesontour/patch-2
...
Typos
2020-07-18 14:14:46 +03:00
Ilya Kantor
918947e129
Merge pull request #1980 from liuernan/patch-1
...
a little confused by this description
2020-07-18 14:14:32 +03:00
Ilya Kantor
e251f05e58
Merge pull request #1983 from lumosmind/patch-40
...
is 'if' operator?
2020-07-18 14:12:58 +03:00
Ilya Kantor
67e54bf269
Merge pull request #1984 from SakiPgr/patch-1
...
Corrected a typo
2020-07-18 14:12:44 +03:00
Ilya Kantor
80f76533e1
Merge pull request #1987 from pushpend3r/patch-1
...
Typo mistake
2020-07-18 14:11:41 +03:00
Ilya Kantor
83c01f4be2
Merge pull request #1993 from shubham-maurya/patch-1
...
Update article.md
2020-07-18 14:10:50 +03:00