Start your All-Access Pass to unlock this challenge
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>