+ 1
But I tough that javascript could also be written in a separate .js file, later included in .html page, not only in head and body tags.
3 Antworten
+ 2
You're correct. Having JavaScript code in an external file is preferred especially if the same code is included in more than one HTML document.
0
Sorry, there it is, external .js doc.
0
javascript can be written in .js file you just have to place the file in the same folder of html and use <script src="abc.js"></script> in html
(if another location mention source)