JSFiddle - React, Tailwind, and code Playground

by ckissi

JavaScript

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