xxxxxxxxxx
<!DOCTYPE html>
<html>
<title>JavaScript this 关键字示例 - 基础教程(div.cn)</title>
<body>
<script>
var globalObj = this;
var myFunc = (() => this);
document.write(myFunc() === globalObj);
</script>
</body>
</html>