Why HTML file can not browse more than two js modules?

Viewed 17

I have faced trouble related to multiple js modules. Html file does not browse more than two modules. What should I do to solve this problem?

html:

<div>
    <button id="play" type="button">PLAY</button>
    <script type="module" src="js.js"></script>
    <script type="module" src="./modules/gameVizualization.js"></script>
    <script type="module" src="./modules/gameWindowCreation.js"></script>
    <script type="module" src="./modules/keyboard.js"></script>
    <script type="module" src="./modules/windowLogicAry.js"></script>
    <script type="module" src="./modules/writeStats.js"></script>
</div>

Error from the console:

error in console

0 Answers
Related