全局的对象也是window的对象,全局的方法也是window的方法

    1. <script>
    2. var a=10;
    3. function go(){
    4. console.log("hello world");
    5. }
    6. // const window = {
    7. // a:10,
    8. // go:function(){
    9. // console.log("hello world");
    10. // }
    11. // }
    12. console.log(window.a)
    13. </script>