Lea Verou, PhD<p><a href="https://front-end.social/tags/JS" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>JS</span></a> quiz time!</p><p>Without trying it out, what do you think the following will print?</p><p>async function foo () {<br> console.log(1);<br> let v = 2;<br> await v;<br> console.log(2);<br>}<br>function bar() {<br> console.log('bar');<br>}</p><p>foo();<br>bar();</p>