| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 | <!DOCTYPE html><html lang="en"><head>    <meta charset="UTF-8">    <meta name="viewport" content="width=device-width, initial-scale=1.0">    <title>Document</title></head><body>         <script>        // function foo(){        //     var a = 1;        // }        // function bar(){        //     var a = "hello";        // }        // console.log(a);        // function baz(){}        // var foo2 = function(){}        // function(){};        // var b = 1;        // var b = "a";        // var a = "hello";        // function foo(){        //     var a = 10;        //     function foo2(){        //         console.log(a);        //     }        //     foo2();        // }        // foo();        // foo2();        function foo(){            function foo2(){                console.log("hello");            }            return foo2;        }        var foo3 = foo();        console.log(foo3);        foo3();    </script></body></html>
 |