JSFiddle - React, Tailwind, and code Playground

by Deepak Manwal

JavaScript

function test(){
console.log("First");
    if(a === undefined)
    {
        console.log("undefined");
    }
    var a="test";
    console.log(a);
    console.log("Second");
}
test();