Skip to content

Commit 0d52720

Browse files
committed
needed 4 translated repos
1 parent 7533c71 commit 0d52720

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

1-js/02-first-steps/11-logical-operators/article.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ if (hour < 10 || hour > 18 || isWeekend) {
6464
}
6565
```
6666

67-
## OR "||" finds the first truthy value
67+
## OR "||" finds the first truthy value [#or-finds-the-first-truthy-value]
6868

6969
The logic described above is somewhat classical. Now, let's bring in the "extra" features of JavaScript.
7070

1-js/04-object-basics/02-object-copy/article.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ alert( a == b ); // false
100100
101101
For comparisons like `obj1 > obj2` or for a comparison against a primitive `obj == 5`, objects are converted to primitives. We'll study how object conversions work very soon, but to tell the truth, such comparisons are needed very rarely -- usually they appear as a result of a programming mistake.
102102
103-
## Cloning and merging, Object.assign
103+
## Cloning and merging, Object.assign [#cloning-and-merging-object-assign]
104104
105105
So, copying an object variable creates one more reference to the same object.
106106

1-js/05-data-types/03-string/article.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -528,7 +528,7 @@ The characters are compared by their numeric code. The greater code means that t
528528
- All lowercase letters go after uppercase letters because their codes are greater.
529529
- Some letters like `Ö` stand apart from the main alphabet. Here, it's code is greater than anything from `a` to `z`.
530530

531-
### Correct comparisons
531+
### Correct comparisons [#correct-comparisons]
532532

533533
The "right" algorithm to do string comparisons is more complex than it may seem, because alphabets are different for different languages.
534534

1-js/09-classes/03-static-properties-methods/article.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ That is the same as a direct assignment to `Article`:
125125
Article.publisher = "Ilya Kantor";
126126
```
127127

128-
## Inheritance of static properties and methods
128+
## Inheritance of static properties and methods [#statics-and-inheritance]
129129

130130
Static properties and methods are inherited.
131131

0 commit comments

Comments
 (0)