Untitled

 avatar
user_7147158
plain_text
20 days ago
301 B
3
Indexable
Never
var a = 10;
function hello(){
    let aa ="aa";
    console.log("helo func")
    function a11(){
        console.log("a11 func")
        function a22(){
            console.log("a22 func")
            console.log(a);
        }
        a22();
    }
   a11();
   console.log(aa)
}
hello()
Leave a Comment