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

Challenge #1 of 1


Q: 

Suppose you have a file called assets/quack.js with some code like this:

import Beak from './beak.js';

// ...

If you wanted to execute this file in a real project, you should import it from assets/app.js. But, for an added challenge: how could you cause your browser to directly execute this file?

userVoice