JSFiddle - React, Tailwind, and code Playground

by TheDiamondDoge

JavaScript

var x = "Hello";
function f() {
	console.log(x)
  var x = "Friend";
	console.log(x)
}

console.log(f())