export
and import
StatementSince ECMAScript 6 (or ES6) you can use the export
or import
statement in a JavaScript file to export or import variables, functions, classes or any other entity to/from other JS files.
For example, let's suppose you've two JavaScript files named "main.js" and "app.js" and you want to export some variables and functions from "main.js" to "app.js". Then in "main.js" file you need to write the export
statement (line no-9) as shown in the following example:
let msg = "Hello World!";
const PI = 3.14;
function addNumbers(a, b) {
return a + b;
}
// Exporting variables and functions
export { msg, PI, addNumbers };
And in "app.js" file you need to write the import
statement (line no-1) as shown here:
import { msg, PI, addNumbers } from './main.js';
console.log(msg); // Prints: Hello World!
console.log(PI); // Prints: 3.14
console.log(addNumbers(5, 16)); // Prints: 21
Alternatively, you can use the jQuery getScript()
method to load a JS file from the server, then execute it with a sigle line of code. Let's suppose you have a JS file "test.js" with the following code.
// Defining variables
var str = "Hi there!";
var num = 15;
// Defining a function
function multiplyNumbers(a, b) {
return a * b;
}
Now you can load this "test.js" file in your script using the getScript()
method, like this:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>jQuery Load JS File Demo</title>
<script src="https://code.jquery.com/jquery-1.10.2.js"></script>
</head>
<body>
<script>
var url = "test.js";
$.getScript(url, function(){
$(document).ready(function(){
console.log(str); // Prints: Hi there!
console.log(num); // Prints: 15
console.log(multiplyNumbers(4, 25)); // Prints: 100
});
});
</script>
</body>
</html>
Hi, My name is Harsukh Makwana. i have been work with many programming language like php, python, javascript, node, react, anguler, etc.. since last 5 year. if you have any issue or want me hire then contact me on [email protected]
How to check if a key exists in an array in PHP
Use the PHP array_key_exists() ...How to Capture Browser Window Resize Event in JavaScript
Use the addEventListener() Met...How to Install OWL Carousel slider in HTML
Slider is important part in the homepage...Laravel 5.5 - Login With Only Mobile Number Using Laravel Custom Auth
Today, we are share with you how to modi...How to Check If Object is an Array in JavaScript
Use the Array.isArray() Method You ca...