Answers for "how to import in javascript file"

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
1

javascript import

//add this to your package.json
//and make sure you are on node version 13.8.0 or above
"type": "module",
import { module } from "./path"; // then you are good to go to use import
Posted by: Guest on May-08-2021

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

Browse Popular Code Answers by Language