AssetMapper: JS Moderno sin Sistema de Compilación
Hacer JS moderno directamente en tu navegador
  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.