JSFiddle - React, Tailwind, and code Playground

by Paco86

JavaScript

function a() {
	console.log(name);  
}

function b() {
	var name = 'b';
  a();
}

var name = 'global';
b();