JSFiddle - React, Tailwind, and code Playground

by Aaron von Schassen

JavaScript

function test1() {
  var test = 5;
	test2();
  function test2() {
    console.log(test);
  }
}

test1();