You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: 1-js/04-object-basics/05-object-toprimitive/article.md
+20-22
Original file line number
Diff line number
Diff line change
@@ -3,28 +3,24 @@
3
3
4
4
What happens when objects are added `obj1 + obj2`, subtracted `obj1 - obj2` or printed using `alert(obj)`?
5
5
6
-
There are special methods in objects that do the conversion.
6
+
In that case objects are auto-converted to primitives, and then the operation is carried out.
7
7
8
-
In the chapter <info:type-conversions> we've seen the rules for numeric, string and boolean conversions of primitives. But we left a gap for objects. Now, as we know about methods and symbols it becomes possible to close it.
8
+
In the chapter <info:type-conversions> we've seen the rules for numeric, string and boolean conversions of primitives. But we left a gap for objects. Now, as we know about methods and symbols it becomes possible to fill it.
9
9
10
-
For objects, there's no to-boolean conversion, because all objects are `true` in a boolean context. So there are only string and numeric conversions.
11
-
12
-
The numeric conversion happens when we subtract objects or apply mathematical functions. For instance, `Date` objects (to be covered in the chapter <info:date>) can be subtracted, and the result of `date1 - date2` is the time difference between two dates.
13
-
14
-
As for the string conversion -- it usually happens when we output an object like `alert(obj)` and in similar contexts.
10
+
1. All objects are `true` in a boolean context. There are only numeric and string conversions.
11
+
2. The numeric conversion happens when we subtract objects or apply mathematical functions. For instance, `Date` objects (to be covered in the chapter <info:date>) can be subtracted, and the result of `date1 - date2` is the time difference between two dates.
12
+
3. As for the string conversion -- it usually happens when we output an object like `alert(obj)` and in similar contexts.
15
13
16
14
## ToPrimitive
17
15
18
-
When an object is used in the context where a primitive is required, for instance, in an `alert` or mathematical operations, it's converted to a primitive value using the `ToPrimitive` algorithm ([specification](https://tc39.github.io/ecma262/#sec-toprimitive)).
19
-
20
-
That algorithm allows us to customize the conversion using a special object method.
16
+
We can fine-tune string and numeric conversion, using special object methods.
21
17
22
-
Depending on the context, the conversion has a so-called "hint".
18
+
The conversion algorithm is called `ToPrimitive` in the [specification](https://tc39.github.io/ecma262/#sec-toprimitive). It's called with a "hint" that specifies the conversion type.
23
19
24
20
There are three variants:
25
21
26
22
`"string"`
27
-
: When an operation expects a string, for object-to-string conversions, like `alert`:
23
+
: For an object-to-string conversion, when we're doing an operation on an object that expects a string, like `alert`:
28
24
29
25
```js
30
26
// output
@@ -35,7 +31,7 @@ There are three variants:
35
31
```
36
32
37
33
`"number"`
38
-
: When an operation expects a number, for object-to-number conversions, like maths:
34
+
: For an object-to-number conversion, like when we're doing maths:
39
35
40
36
```js
41
37
// explicit conversion
@@ -52,7 +48,7 @@ There are three variants:
52
48
`"default"`
53
49
: Occurs in rare cases when the operator is "not sure" what type to expect.
54
50
55
-
For instance, binary plus `+` can work both with strings (concatenates them) and numbers (adds them), so both strings and numbers would do. Or when an object is compared using `==` with a string, number or a symbol.
51
+
For instance, binary plus `+` can work both with strings (concatenates them) and numbers (adds them), so both strings and numbers would do. Or when an object is compared using `==` with a string, number or a symbol, it's also unclear which conversion should be done.
In the absence of `Symbol.toPrimitive` and `valueOf`, `toString` will handle all primitive conversions.
161
157
162
-
163
-
## ToPrimitive and ToString/ToNumber
158
+
## Return types
164
159
165
160
The important thing to know about all primitive-conversion methods is that they do not necessarily return the "hinted" primitive.
166
161
167
162
There is no control whether `toString()` returns exactly a string, or whether `Symbol.toPrimitive` method returns a number for a hint "number".
168
163
169
-
**The only mandatory thing: these methods must return a primitive.**
164
+
The only mandatory thing: these methods must return a primitive, not an object.
165
+
166
+
```smart header="Historical notes"
167
+
For historical reasons, if `toString` or `valueOf` return an object, there's no error, but such value is ignored (like if the method didn't exist). That's because in ancient times there was no good "error" concept in JavaScript.
168
+
169
+
In contrast, `Symbol.toPrimitive` *must* return a primitive, otherwise there will be an error.
170
+
```
171
+
172
+
## Further operations
170
173
171
174
An operation that initiated the conversion gets that primitive, and then continues to work with it, applying further conversions if necessary.
172
175
@@ -208,11 +211,6 @@ For instance:
208
211
alert(obj + 2); // 3 (ToPrimitive returned boolean, not string => ToNumber)
209
212
```
210
213
211
-
```smart header="Historical notes"
212
-
For historical reasons, methods `toString` or `valueOf` *should* return a primitive: if any of them returns an object, then there's no error, but that object is ignored (like if the method didn't exist).
213
-
214
-
In contrast, `Symbol.toPrimitive` *must* return a primitive, otherwise, there will be an error.
Copy file name to clipboardexpand all lines: 1-js/05-data-types/04-array/article.md
+17-18
Original file line number
Diff line number
Diff line change
@@ -1,12 +1,12 @@
1
-
# Arrays
1
+
# Arrays
2
2
3
3
Objects allow you to store keyed collections of values. That's fine.
4
4
5
-
But quite often we find that we need an *ordered collection*, where we have a 1st, a 2nd, a 3rd element and so on. For example, we need that to store a list of something: users, goods, HTML elements etc.
5
+
But quite often we find that we need an *ordered collection*, where we have a 1st, a 2nd, a 3rd element and so on. For example, we need that to store a list of something: users, goods, HTML elements etc.
6
6
7
7
It is not convenient to use an object here, because it provides no methods to manage the order of elements. We can’t insert a new property “between” the existing ones. Objects are just not meant for such use.
8
8
9
-
There exists a special data structure named `Array`, to store ordered collections.
9
+
There exists a special data structure named `Array`, to store ordered collections.
10
10
11
11
## Declaration
12
12
@@ -81,10 +81,10 @@ arr[3](); // hello
81
81
82
82
````smart header="Trailing comma"
83
83
An array, just like an object, may end with a comma:
84
-
```js
84
+
```js
85
85
let fruits = [
86
-
"Apple",
87
-
"Orange",
86
+
"Apple",
87
+
"Orange",
88
88
"Plum"*!*,*/!*
89
89
];
90
90
```
@@ -106,7 +106,7 @@ Arrays support both operations.
106
106
107
107
In practice we need it very often. For example, a queue of messages that need to be shown on-screen.
108
108
109
-
There's another use case for arrays -- the data structure named [stack](https://en.wikipedia.org/wiki/Stack_(abstract_data_type)).
109
+
There's another use case for arrays -- the data structure named [stack](https://en.wikipedia.org/wiki/Stack_(abstract_data_type)).
110
110
111
111
It supports two operations:
112
112
@@ -121,7 +121,7 @@ A stack is usually illustrated as a pack of cards: new cards are added to the to
121
121
122
122
For stacks, the latest pushed item is received first, that's also called LIFO (Last-In-First-Out) principle. For queues, we have FIFO (First-In-First-Out).
123
123
124
-
Arrays in JavaScript can work both as a queue and as a stack. They allow you to add/remove elements both to/from the beginning or the end.
124
+
Arrays in JavaScript can work both as a queue and as a stack. They allow you to add/remove elements both to/from the beginning or the end.
125
125
126
126
In computer science the data structure that allows it is called [deque](https://en.wikipedia.org/wiki/Double-ended_queue).
127
127
@@ -189,11 +189,11 @@ alert( fruits );
189
189
190
190
## Internals
191
191
192
-
An array is a special kind of object. The square brackets used to access a property `arr[0]` actually come from the object syntax. Numbers are used as keys.
192
+
An array is a special kind of object. The square brackets used to access a property `arr[0]` actually come from the object syntax. That's essentially the same as `obj[key]`, where `arr` is the object, while numbers are used as keys.
193
193
194
194
They extend objects providing special methods to work with ordered collections of data and also the `length` property. But at the core it's still an object.
195
195
196
-
Remember, there are only 7 basic types in JavaScript. Array is an object and thus behaves like an object.
196
+
Remember, there are only 7 basic types in JavaScript. Array is an object and thus behaves like an object.
197
197
198
198
For instance, it is copied by reference:
199
199
@@ -203,7 +203,7 @@ let fruits = ["Banana"]
203
203
let arr = fruits; // copy by reference (two variables reference the same array)
204
204
205
205
alert( arr === fruits ); // true
206
-
206
+
207
207
arr.push("Pear"); // modify the array by reference
208
208
209
209
alert( fruits ); // Banana, Pear - 2 items now
@@ -229,7 +229,7 @@ But the engine will see that we're working with the array as with a regular obje
229
229
230
230
The ways to misuse an array:
231
231
232
-
- Add a non-numeric property like `arr.test = 5`.
232
+
- Add a non-numeric property like `arr.test = 5`.
233
233
- Make holes, like: add `arr[0]` and then `arr[1000]` (and nothing between them).
234
234
- Fill the array in the reverse order, like `arr[1000]`, `arr[999]` and so on.
235
235
@@ -296,7 +296,7 @@ let fruits = ["Apple", "Orange", "Plum"];
296
296
297
297
// iterates over array elements
298
298
for (let fruit of fruits) {
299
-
alert( fruit );
299
+
alert( fruit );
300
300
}
301
301
```
302
302
@@ -320,7 +320,7 @@ But that's actually a bad idea. There are potential problems with it:
320
320
321
321
There are so-called "array-like" objects in the browser and in other environments, that *look like arrays*. That is, they have `length` and indexes properties, but they may also have other non-numeric properties and methods, which we usually don't need. The `for..in` loop will list them though. So if we need to work with array-like objects, then these "extra" properties can become a problem.
322
322
323
-
2. The `for..in` loop is optimized for generic objects, not arrays, and thus is 10-100 times slower. Of course, it's still very fast. The speedup may only matter in bottlenecks or seem irrelevant. But still we should be aware of the difference.
323
+
2. The `for..in` loop is optimized for generic objects, not arrays, and thus is 10-100 times slower. Of course, it's still very fast. The speedup may only matter in bottlenecks. But still we should be aware of the difference.
324
324
325
325
Generally, we shouldn't use `for..in` for arrays.
326
326
@@ -338,7 +338,7 @@ fruits[123] = "Apple";
338
338
alert( fruits.length ); // 124
339
339
```
340
340
341
-
Note that we usually don't use arrays like that.
341
+
Note that we usually don't use arrays like that.
342
342
343
343
Another interesting thing about the `length` property is that it's writable.
344
344
@@ -385,7 +385,7 @@ To evade such surprises, we usually use square brackets, unless we really know w
385
385
386
386
## Multidimensional arrays
387
387
388
-
Arrays can have items that are also arrays. We can use it for multidimensional arrays, to store matrices:
388
+
Arrays can have items that are also arrays. We can use it for multidimensional arrays, for example to store matrices:
389
389
390
390
```js run
391
391
let matrix = [
@@ -445,7 +445,7 @@ Array is a special kind of object, suited to storing and managing ordered data i
445
445
446
446
The call to `new Array(number)` creates an array with the given length, but without elements.
447
447
448
-
- The `length` property is the array length or, to be precise, its last numeric index plus one. It is auto-adjusted by array methods.
448
+
- The `length` property is the array length or, to be precise, its last numeric index plus one. It is auto-adjusted by array methods.
449
449
- If we shorten `length` manually, the array is truncated.
450
450
451
451
We can use an array as a deque with the following operations:
@@ -461,4 +461,3 @@ To loop over the elements of the array:
461
461
-`for (let i in arr)`-- never use.
462
462
463
463
We will return to arrays and study more methods to add, remove, extract elements and sort arrays in the chapter <info:array-methods>.
Copy file name to clipboardexpand all lines: 1-js/06-advanced-functions/09-call-apply-decorators/article.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -453,7 +453,7 @@ let wrapper = function() {
453
453
}
454
454
```
455
455
456
-
We also saw an example of *method borrowing* when we take a method from an object and `call` it in the context of another object. It is quite common to take array methods and apply them to arguments. The alternative is to use rest parameters object that is a real array.
456
+
We also saw an example of *method borrowing* when we take a method from an object and `call` it in the context of another object. It is quite common to take array methods and apply them to `arguments`. The alternative is to use rest parameters object that is a real array.
457
457
458
458
459
459
There are many decorators there in the wild. Check how well you got them by solving the tasks of this chapter.
Copy file name to clipboardexpand all lines: 1-js/09-classes/02-class-inheritance/article.md
+8-8
Original file line number
Diff line number
Diff line change
@@ -49,7 +49,7 @@ Right now they are fully independent.
49
49
50
50
But we'd want `Rabbit` to extend `Animal`. In other words, rabbits should be based on animals, have access to methods of `Animal` and extend them with its own methods.
51
51
52
-
To inherit from another class, we should specify `"extends"` and the parent class before the brackets`{..}`.
52
+
To inherit from another class, we should specify `"extends"` and the parent class before the braces`{..}`.
53
53
54
54
Here `Rabbit` inherits from `Animal`:
55
55
@@ -209,7 +209,7 @@ With constructors it gets a little bit tricky.
209
209
210
210
Till now, `Rabbit` did not have its own `constructor`.
211
211
212
-
According to the [specification](https://tc39.github.io/ecma262/#sec-runtime-semantics-classdefinitionevaluation), if a class extends another class and has no `constructor`, then the following `constructor` is generated:
212
+
According to the [specification](https://tc39.github.io/ecma262/#sec-runtime-semantics-classdefinitionevaluation), if a class extends another class and has no `constructor`, then the following "empty" `constructor` is generated:
Let's get a little deeper under the hood of `super`. We'll see some interesting things by the way.
311
311
312
-
First to say, from all that we've learned till now, it's impossible for `super` to work.
312
+
First to say, from all that we've learned till now, it's impossible for `super` to work at all!
313
313
314
-
Yeah, indeed, let's ask ourselves, how it could technically work? When an object method runs, it gets the current object as `this`. If we call `super.method()` then, how to retrieve the `method`? Naturally, we need to take the `method`from the prototype of the current object. How, technically, we (or a JavaScript engine) can do it?
314
+
Yeah, indeed, let's ask ourselves, how it could technically work? When an object method runs, it gets the current object as `this`. If we call `super.method()` then, it needs to retrieve the `method`from the prototype of the current object. How JavaScript engine should get the prototype of `this`?
315
315
316
-
Maybe we can get the method from `[[Prototype]]` of `this`, as `this.__proto__.method`? Unfortunately, that doesn't work.
316
+
The task may seem simple, but it isn't. The engine could try to get the method from `[[Prototype]]` of `this`, as `this.__proto__.method`. Unfortunately, that doesn't work.
317
317
318
-
Let's try to do it. Without classes, using plain objects for the sake of simplicity.
318
+
Let's demonstrate the problem. Without classes, using plain objects for the sake of simplicity.
319
319
320
-
Here, `rabbit.eat()`should call `animal.eat()` method of the parent object:
320
+
In the example below, `rabbit.__proto__ = animal`. Now let's try: in `rabbit.eat()`we'll call `animal.eat()`, using `this.__proto__`:
321
321
322
322
```js run
323
323
let animal = {
@@ -418,7 +418,7 @@ To provide the solution, JavaScript adds one more special internal property for
418
418
419
419
This actually violates the idea of "unbound" functions, because methods remember their objects. And `[[HomeObject]]` can't be changed, so this bound is forever. So that's a very important change in the language.
420
420
421
-
But this change is safe. `[[HomeObject]]` is used only for calling parent methods in `super`, to resolve the prototype. So it doesn't break compatibility.
421
+
But this change is safe. `[[HomeObject]]` is used only for calling parent methods in `super`, to resolve the prototype. So it doesn't breakcompatibility.Regular method calls know nothing about `[[HomeObject]]`, it only matters for`super`.
422
422
423
423
Let's see how it works for `super` -- again, using plain objects:
In the browser, independant top-level scope also exists for each `<script type="module">`:
89
+
In the browser, independent top-level scope also exists for each `<script type="module">`:
90
90
91
91
```html run
92
92
<scripttype="module">
@@ -263,7 +263,7 @@ When using modules, we should be aware that HTML-document can show up before the
263
263
264
264
### Async works on inline scripts
265
265
266
-
Async attribute `<script async type="module">` is allowed on both inline and external scripts. Async scripts run immediately when imported modules are processed, independantly of other scripts or the HTML document.
266
+
Async attribute `<script async type="module">` is allowed on both inline and external scripts. Async scripts run immediately when imported modules are processed, independently of other scripts or the HTML document.
267
267
268
268
For example, the script below has `async`, so it doesn't wait for anyone.
0 commit comments