JSFiddle - React, Tailwind, and code Playground

by Venkatesh Dematti

JavaScript

var x = 10;

function q(){
  console.log(x);
  var x = 20;
}
q();