We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9ba208f commit cf33b67Copy full SHA for cf33b67
1-js/13-modules/01-modules-intro/article.md
@@ -230,11 +230,12 @@ sayHi(); // Ready to serve, *!*Pete*/!*!
230
231
The object `import.meta` contains the information about the current module.
232
233
-Its content depends on the environment. In the browser, it contains the url of the script, or a current webpage url if inside HTML:
+Its content depends on the environment. In the browser, it contains the URL of the script, or a current webpage URL if inside HTML:
234
235
```html run height=0
236
<script type="module">
237
- alert(import.meta.url); // script url (url of the html page for an inline script)
+ alert(import.meta.url); // script URL
238
+ // for an inline script - the URL of the current HTML-page
239
</script>
240
```
241
0 commit comments