JSFiddle - React, Tailwind, and code Playground

by Wener

JavaScript

function d(x){return x;}
    
    d(function a(){});
try{
    d(a);// this is not work, a is undefined(works in ie, failed in ff and chrome)
    }catch(e){
        alert(e)
    }