Skip to content

Commit

Permalink
Merge pull request #527 from Czechitas-podklady-WEB/feature/JS1.6/opr…
Browse files Browse the repository at this point in the history
…ava-document.body

fix(JS1.6): document.innerHTML – doplněno body
  • Loading branch information
FilipJirsak authored Sep 26, 2023
2 parents eeec05b + 3112e4e commit b5f25ba
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
8 changes: 4 additions & 4 deletions js1/funkce-obory/cvdoma/kalkulacka.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ Napište funkci `calculate` se třemi parametry `number1`, `operation` a `number
Příklad použití

```js
document.innerHTML += `2 + 3 = ${calculate(2, '+', 3)}<br>`; // vypíše výsledek 5
document.innerHTML += `3 * 7 = ${calculate(3, '*', 7)}<br>`; // vypíše výsledek 21
document.innerHTML += `10 / 4 = ${calculate(10, '/', 4)}<br>`; // vypíše výsledek 2.5
document.body.innerHTML += `2 + 3 = ${calculate(2, '+', 3)}<br>`; // vypíše výsledek 5
document.body.innerHTML += `3 * 7 = ${calculate(3, '*', 7)}<br>`; // vypíše výsledek 21
document.body.innerHTML += `10 / 4 = ${calculate(10, '/', 4)}<br>`; // vypíše výsledek 2.5
```

:::solution
Expand All @@ -41,7 +41,7 @@ Můžete si do javascriptového souboru přidat následující kód, kterým si
```js
const testCalculate = (expected, actual) => {
const solution = expected === actual ? '' : '';
document.innerHTML += `${symbol} Očekávaná hodnota: ${expected}, vypočtená hodnota: ${actual}<br>`;
document.body.innerHTML += `${symbol} Očekávaná hodnota: ${expected}, vypočtená hodnota: ${actual}<br>`;
};

testCalculate(5, calculate(2, '+', 3));
Expand Down
14 changes: 7 additions & 7 deletions js1/retezce-podminky/cvlekce/vlastnosti-metody.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ V JavaScriptovém programu si založte proměnnou `title` a uložte do ní **ná

```js
const title = "Lord of the Rings";​
document.innerHTML += title.length;
document.innerHTML += `<br>`;​
document.innerHTML += title.toUpperCase();​
document.innerHTML += `<br>`;​
document.innerHTML += title.slice(0, 5);
document.innerHTML += `<br>`;​
document.innerHTML += title.slice(title.length - 5, title.length
document.body.innerHTML += title.length;
document.body.innerHTML += `<br>`;​
document.body.innerHTML += title.toUpperCase();​
document.body.innerHTML += `<br>`;​
document.body.innerHTML += title.slice(0, 5);
document.body.innerHTML += `<br>`;​
document.body.innerHTML += title.slice(title.length - 5, title.length
```

:::

0 comments on commit b5f25ba

Please sign in to comment.