AssetMapper: Modern JS with Zero Build System
Doing Modern JS Right in your Browser
  Unlock this challenge
Login Register

Challenge 1 / 1

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?

Skip challenges and go to theNext Chapter

Turn Challenges Off?

All further challenges will be skipped automatically.
You can re-enable challenges at any time on this page or from your account page.