Answers for "how to import other js files in js"

23

how to import a JavaScript file

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

import js file

import { hello } from './module.js';
let val = hello();  // val is "Hello";
Posted by: Guest on November-03-2021
2

javascript include a js file from another

// jQuery
$.getScript('/path/to/imported/script.js', function()
{
    // script is now loaded and executed.
    // put your dependent JS here.
});
Posted by: Guest on September-17-2020

Code answers related to "how to import other js files in js"

Browse Popular Code Answers by Language