Currently, I am working on the 'create a platform game' project as outlined in Eloquent JavaScript, and I have encountered an issue related to script tags.
As per the instructions in the book, we are advised to showcase our level using:
<link rel="stylesheet" href="css/game.css">
<script>
var simpleLevel = new Level(simpleLevelPlan);
var display = new DOMDisplay(document.body, simpleLevel);
</script>
I attempted including this code snippet (along with an additional script tag for my platform.js file) into index.html, but the browser is not displaying anything. I am unsure of what mistake I might be making?