I am using the script tag to import a module I made into an html file. Why does this console.log not show up in my browser's console?
<body>
<div id="app"></div>
<script src="app.js" type="module">
console.log("test");
</script>
I am using the script tag to import a module I made into an html file. Why does this console.log not show up in my browser's console?
<body>
<div id="app"></div>
<script src="app.js" type="module">
console.log("test");
</script>