en.javascript.info/1-js/10-modules/02-modules-browser/example/index.html
2019-03-02 23:36:50 +03:00

15 lines
202 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
</head>
<body>
<script type="module">
import weekdays from './weekdays.js';
alert(weekdays[0]);
</script>
</body>
</html>