1. Using vscode, to write a simple html, for the first time introduces a common.js file, but when you use the functions in the js in html, you don"t get a prompt
2. The code is as follows
// js code
function getCurrentFileName() {
console.log("hello");
}
// html code
...
<script>
getCurrentFileName();//
</script>
...