Files
2024-01-24 19:52:36 +01:00

920 B

id, title, challengeType, dashedName
id title challengeType dashedName
62a39f5a5790eb27c1e5d4bf Schritt 5 0 step-5

--description--

Deine Ansicht wurde auf deine neue script.js Datei umgestellt. Denke daran, dass du die oben genannten Registerkarten verwenden kannst, um zwischen den Dateien wechseln zu können.

Add your console.log("Hello World"); line to this file, and see it appear in your console.

--hints--

You should have a console.log("Hello World"); line in your code.

assert.match(code, /console\.log\(\s*('|")Hello World\1\s*\)\s*;/);

--seed--

--seed-contents--

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8">
    <link rel="stylesheet" href="./styles.css">
    <title>RPG - Dragon Repeller</title>
    <script src="./script.js"></script>
  </head>
  <body>
    <div id="game">
    </div>
  </body>
</html>
--fcc-editable-region--

--fcc-editable-region--