JSFiddle - React, Tailwind, and code Playground

by joshuatz

HTML

<pre><code class="language-javascript">
// call alpha before it is defined.
alpha();
function alpha(){
    console.log('running alpha');
    // call beta before it is defined.
    beta();
}
function beta(){
    console.log('running beta');
}
</code>
</pre>

JavaScript

// call alpha before it is defined.
alpha();
function alpha(){
    console.log('running alpha');
    // call beta before it is defined.
    beta();
}
function beta(){
    console.log('running beta');
}