Answers for "how to import script in javascript"

59

include script in html

<script type="text/javascript" src="/path/to/script.js"></script>
Posted by: Guest on July-17-2020
10

how to import a JavaScript file

<script type="text/javascript" src="path-to-javascript-file.js"></script>
Posted by: Guest on March-08-2020
19

how to link javascript to html

<script src="PathToYourFile.js"> </script>
Posted by: Guest on January-17-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

Code answers related to "how to import script in javascript"

Browse Popular Code Answers by Language