JSFiddle - React, Tailwind, and code Playground

by garmashnikolay

CSS

var foo = 1;
function bar() {
    if ( !foo ) {
		var foo = 10;
	}
	console.log(foo);
}
bar()