JSFiddle - React, Tailwind, and code Playground

by TheDiamondDoge

JavaScript

a = 1;
function f() {
	console.log(a);
  var a = 5;
}

f();