mirror of
https://github.com/alrayyes/wiki.git
synced 2024-11-22 11:36:23 +00:00
15 lines
240 B
Markdown
15 lines
240 B
Markdown
---
|
|
date: 2020-11-16
|
|
id: c6de9c5c-2b33-4550-a679-8c32075d2c24
|
|
title: Dynamic Import
|
|
---
|
|
|
|
# Description
|
|
|
|
Modules can be imported dynamically on-demand anywhere in the code
|
|
|
|
# Syntax
|
|
|
|
``` javascript
|
|
const module = await import('module');
|
|
```
|