Skip to content

Commit 6a9b76a

Browse files
committed
merging all conflicts
2 parents a9bebc2 + 6236eb8 commit 6a9b76a

File tree

4 files changed

+7
-5
lines changed

4 files changed

+7
-5
lines changed

1-js/02-first-steps/16-function-expressions/article.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,11 @@ let řekniAhoj = function() { // (1) vytvoření
8282
alert( "Ahoj" );
8383
};
8484

85+
<<<<<<< HEAD
8586
let funkce = řekniAhoj;
87+
=======
88+
let func = sayHi; //(2)
89+
>>>>>>> 6236eb8c3cdde729dab761a1d0967a88a1a6197e
8690
// ...
8791
```
8892

1-js/03-code-quality/06-polyfills/article.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,9 +71,7 @@ if (!Math.trunc) { // if no such function
7171
7272
JavaScript is a highly dynamic language. Scripts may add/modify any function, even built-in ones.
7373
74-
Two interesting polyfill libraries are:
75-
- [core js](https://github.com/zloirock/core-js) that supports a lot, allows to include only needed features.
76-
74+
One interesting polyfill library is [core-js](https://github.com/zloirock/core-js), which supports a wide range of features and allows you to include only the ones you need.
7775
7876
## Summary
7977

1-js/05-data-types/02-number/article.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ Common use cases for this are:
118118
```warn header="Two dots to call a method"
119119
Please note that two dots in `123456..toString(36)` is not a typo. If we want to call a method directly on a number, like `toString` in the example above, then we need to place two dots `..` after it.
120120
121-
If we placed a single dot: `123456.toString(36)`, then there would be an error, because JavaScript syntax implies the decimal part after the first dot. And if we place one more dot, then JavaScript knows that the decimal part is empty and now goes the method.
121+
If we placed a single dot: `123456.toString(36)`, then there would be an error, because JavaScript syntax implies the decimal part after the first dot. And if we place one more dot, then JavaScript knows that the decimal part is empty and now uses the method.
122122
123123
Also could write `(123456).toString(36)`.
124124

1-js/11-async/02-promise-basics/article.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ The idea of `finally` is to set up a handler for performing cleanup/finalizing a
222222
223223
E.g. stopping loading indicators, closing no longer needed connections, etc.
224224
225-
Think of it as a party finisher. No matter was a party good or bad, how many friends were in it, we still need (or at least should) do a cleanup after it.
225+
Think of it as a party finisher. Irresepective of whether a party was good or bad, how many friends were in it, we still need (or at least should) do a cleanup after it.
226226
227227
The code may look like this:
228228

0 commit comments

Comments
 (0)