We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 31f80ee commit d1c2c4cCopy full SHA for d1c2c4c
1-js/13-modules/03-modules-dynamic-imports/article.md
@@ -94,3 +94,9 @@ Here's the full example:
94
So, dynamic imports are very simple to use, and they allow to import modules at run-time.
95
96
Also, dynamic imports work in regular scripts, they don't require `script type="module"`.
97
+
98
+```smart
99
+Although `import()` looks like a function call, it's a special syntax that just happens to use parentheses (similar to `super()`).
100
101
+That means that import doesn't inherit from `Function.prototype` so we cannot call or apply it.
102
+```
0 commit comments