JSFiddle - React, Tailwind, and code Playground

by ijse

JavaScript

function testNameSpace() {
     var outer = 3;
    {
         var outer = 1;
       
    }  
   alert(outer); 
}
testNameSpace();