JSFiddle - React, Tailwind, and code Playground

by Tom Randolph

JavaScript

function es5(){
    console.log( thing );
    var thing = 1;
}

function es6(){
    console.log( thing );
    let thing = 1;
}

es5();
es6();