<!DOCTYPE html>
<html>
<script type="module" src="script.js"></script>
<body>
<h1>ES6 modules with <script type="module"> - See console for results</h1>
</body>
</html>
import coolstuff, * as fantastic from './fantastic.js';
import './wonderful.js';
import {vowels as letters, render,testing} from './amazing.js';
fantastic.render();
console.log(letters);
render();
testing();
coolstuff();
// fantastic.js
export let render = function() {
console.log("Hello from fantastic.render()!")
}
let main = function() {
console.log("main() in fantastic");
}
export default main;
// wonderful.js
export let render = function() {
console.log("Hello from wonderful.render()!");
}
console.log("Log statement in global scope of wonderful.js");
// amazing.js
const vowels = ['a','e','i','o','u'];
let render = function () {
console.log("Hello from amazing.render()!");
}
function testing() {
console.log("testing() in amazing.js");
}
export {vowels,render,testing};