JSFiddle - React, Tailwind, and code Playground

by batya15

JavaScript

let x = 10;
function boo() {
console.log(x);
var x = 20;
}
boo();