Importing ES Modules: Named Imports

This page uses the following Javascript import syntax:

<script type="module">
import { SayHello, SayGoodbye } from './greetings-en.js';
SayHello('Alice');
SayGoodbye('Bob');
</script>