Przykład zadania.
Poniższy kod zapisać w notatniku jako typ html
Uruchomić w przeglądarce internetowej.
Efektem powinna być strona z zawartością i komunikatami z konsoli:
Poniższy kod zapisać w notatniku jako typ html
<!DOCTYPE html> <html> <head> <title>Tytuł strony</title> </head> <body> <h1>Napis duży</h1> <p>akapit tekstu</p> <a href="https://www.wp.pl">Wirtualna Polska</a> <script> var komunikat = "Witaj!"; console.log(komunikat); console.log("Dzień Dobry"); if (komunikat.length > 5) { console.log("Napis jest naprawde długi"); } else { console.log("Napis jest krotki"); } var napis = 0; while ( napis < komunikat.length ) { console.log( komunikat[napis] ); napis++; } </script> </body> </html>
Uruchomić w przeglądarce internetowej.
Efektem powinna być strona z zawartością i komunikatami z konsoli: