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

Challenge #1 of 1


Q: 

What would happen if you added this into the middle of a Twig template?

<script type="module">
import _ from 'lodash';

const text = _.camelCase('Will this work?');
document.querySelector('.foo').innerText = text; 
</script>

userVoice