Check out this code:
// public/app.js
import { completeJoke } from './utils/jokes.js';
const joke = completeJoke('Knock, knock');
And:
// public/utils/jokes.js
export function completeJoke(start) { /* pretend real code */ };
On our page, we execute app.js
:
<script src="/app.js"></script>
Will this code run?