Skip to content

JS 立即执行函数与 this 的研究

Published: at 11:11 AMSuggest Changes

问题

(function() {
  console.log("我拿我自己的 this", this);
}());

(() => {
  console.log("我怎么拿我自己的 this?");
})();

Previous Post
NextJS 中 'window is not defined' 错误的解决方法
Next Post
非阻塞加载 CSS:避免 CDN 故障导致页面加载延迟