Flag of Ukraine
SymfonyCasts stands united with the people of Ukraine
Next Chapter

Challenge #1 of 1


Q: 

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?

userVoice