Answers for "link js to js"

11

link javascript to html

<script src="index.js"> </script>
Posted by: Guest on April-11-2020
5

javascript using another js file

// module.js
export function hello() {
  return "Hello";
}

// main.js
import {hello} from 'module'; // or './module'
let val = hello(); // val is "Hello";
Posted by: Guest on March-15-2020

Browse Popular Code Answers by Language