
- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Explain import “as” and Export “as” constructs in JavaScript.
Import as allows us to import a named module under different name.
Export as allows us to export a named module under different name.
Following is the code for import as and export as construct in Javascript −
Example
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>Document</title> <style> body { font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; } .result { font-size: 18px; font-weight: 500; color: rebeccapurple; } </style> </head> <body> <h1>Import as and Export as in JavaScript</h1> <div class="result"></div> <button class="Btn">CLICK HERE</button> <h3>Click on the above button to execute the imported function</h3> <script src="script.js" type="module"></script> </body> </html>
script.js
import {test,tellTime as showTime} from "./sample.js"; let resultEle = document.querySelector('.result'); document.querySelector('.Btn').addEventListener('click',()=>{ resultEle.innerHTML+=test(); resultEle.innerHTML+=showTime(); })
sample.js
function testImport() { return "Module testImport has been imported" + ""; } function tellTime() { return new Date(); } export { testImport as test, tellTime };
Output
The above code will produce the following output −
On clicking the ‘CLICK HERE’ button −
- Related Questions & Answers
- How to format number with “.” as thousand separators, and “,” as decimal separator?
- HTML5 <input type=“file” accept=“image/*” capture=“camera”> display as image rather than “choose file” button
- Why avoid increment (“++”) and decrement (“--”) operators in JavaScript?
- Header files “stdio.h” and “stdlib.h” in C
- Python Object Comparison “is” vs “==”
- Render ASP.NET TextBox as HTML5 Input type “Number”
- MongoDB Query for boolean field as “not true”
- Using combination of “AND” and “OR” in SELECT in ABAP
- How to create a dialog with “yes” and “no” options in JavaScript?
- Can we use “rank” as column name with MySQL8?
- Deletions of “01” or “10” in binary string to make it free from “01” or “10” in C++ Program
- Inline conditions in Lua (a == b ? “yes” : “no”)
- How to replace “and” in a string with “&” in R?
- Difference between “int main()” and “int main(void)” in C/C++?
- HTML5 meta name = “viewport” doesn't work as expected
Advertisements