Skip to content

Commit ba3f9fb

Browse files
authored
Merge branch 'master' into master
2 parents 5373116 + f34f460 commit ba3f9fb

File tree

514 files changed

+14595
-13573
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

514 files changed

+14595
-13573
lines changed

.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,7 @@ sftp-config.json
2121
Thumbs.db
2222

2323

24-
/svgs
24+
*.bak
25+
token.txt
26+
/svgs
27+
Lines changed: 1 addition & 1 deletion
Loading
Lines changed: 1 addition & 1 deletion
Loading

1-js/02-first-steps/18-javascript-specials/article.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -272,9 +272,8 @@ Uvedli jsme tři způsoby, jakými lze v JavaScriptu vytvořit funkci:
272272
let dvojnásobek = n => n * 2;
273273
```
274274

275-
276275
- Funkce mohou obsahovat lokální proměnné: ty jsou deklarovány uvnitř jejich těla nebo v seznamu parametrů. Tyto proměnné jsou viditelné jen uvnitř funkce.
277-
- Parametry mohou mít nastavené výchozí hodnoty: `function součet(a = 1, b = 2) {...}`.
276+
- Parametry mohou mít předem nastavené hodnoty: `function součet(a = 1, b = 2) {...}`.
278277
- Funkce vždy něco vrátí. Neobsahuje-li příkaz `return`, jejím výsledkem je `undefined`.
279278

280279
Více v kapitolách: <info:function-basics>, <info:arrow-functions-basics>.

1-js/02-first-steps/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
# JavaScript Fundamentals
1+
# Základy JavaScriptu
22

3-
Let's learn the fundamentals of script building.
3+
Naučíme se základům vytváření skriptů.

0 commit comments

Comments
 (0)