JSFiddle - React, Tailwind, and code Playground
by pawan1_saket
JavaScript
var t = function(){
let a = b = 3;
}
t();
console.log("a defined? ",typeof a + (typeof a !== 'undefined'));
console.log("b defined? ",typeof b + (typeof b !== 'undefined'));