JSFiddle - React, Tailwind, and code Playground

by Ajay Shrestha

JavaScript

console.log("Before declaration of a",a);
var a = 0;
console.log("After Declaration of a",a);

console.log("Before declaration of b",b);
let b="true";
console.log("After declaration of b",b);