<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
</head>
<body>
<script>
    // if (window.requestAnimationFrame()){}
    // 在低版本的ie中,这个是不被支持的如果不加window的话不会进入判断而是直接报错这样到程序无法执行
    // 但是加了window之后,就可以被判断了

    function a() {
        console.log(this===window);
    }
    a();
    // 函数自执行  this指向window
</script>
</body>
</html>