-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
63 additions
and
59 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,16 @@ | ||
--- | ||
title: FIT e-mail | ||
demand: 2 | ||
lead: Vytvořte e-mailovou adresu pro studenty FIT ČVUT. | ||
solutionAccess: lock | ||
--- | ||
|
||
Pokud se přihlásíte jako student například na Fakultu Informačních Technologí ČVUT, bude vám informačním systémem automaticky přidělen e-mail, který se vytvoří z vašeho jména a příjmení. Z vašeho příjmení se vezme pět prvních znaků a z vašeho křestního jména první tři. Výsledek se převede na malá písmena a připojí se doména `fit.cvut.cz`. Pro jméno Jana Procházková tak vznikne adresa `[email protected]`. | ||
|
||
1. Vytvořte webovou stránku, která **požádá uživatele** nejdříve o jeho **křestní jméno** a pak **příjmení**, obojí bez diakritiky. | ||
1. Pomocí metody `trim` zajistěte, že ve jméně ani příjmení nebudou na začátku ani na konci **žádné bílé znaky**. | ||
1. Pomocí metody `slice` **vyřízněte** ze jména i příjmení **příslušné části**. | ||
1. Pomocí **interpolace řetězců** sestavte výslednou adresu a vypište ji do stránky. | ||
1. Vytvořte webovou stránku, která požádá uživatele nejdříve o jeho **křestní jméno** a pak **příjmení**, obojí bez diakritiky. | ||
1. Pomocí metody `trim` zajistěte, že ve jméně ani příjmení nebudou na začátku ani na konci žádné bílé znaky. | ||
1. Pomocí metody `slice` vyřízněte ze jména i příjmení příslušné části. | ||
1. Pomocí interpolace řetězců sestavte výslednou adresu a vypište ji do stránky. | ||
|
||
:::solution | ||
|
||
|
@@ -21,5 +23,4 @@ const prijmeni = prompt('Zadejte příjmení.').toLowerCase().trim().slice(0, 5) | |
|
||
document.body.innerHTML = `<p>Váš e-mail je: ${prijmeni}${jmeno}@fit.cvut.cz</p>`; | ||
``` | ||
|
||
::: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters