03. JavaScript Fundamentals/01. Build a Counter App/18. Write your first string variable/Exercise 1/index.html
This file path has a problem with the index.html file, the JavaScript file is linked with the wrong JavaScript file path
Something like this
<script src="index.pack.js"></script>
The solution will be like this
<script src="index.js"></script>
And the doctype of html is not given
The same problem exists in the Exercise 2 file.
I created this issue for practice.
03. JavaScript Fundamentals/01. Build a Counter App/18. Write your first string variable/Exercise 1/index.html
This file path has a problem with the index.html file, the JavaScript file is linked with the wrong JavaScript file path
Something like this
<script src="index.pack.js"></script>The solution will be like this
<script src="index.js"></script>And the doctype of html is not given
The same problem exists in the Exercise 2 file.
I created this issue for practice.