Skip to content

说说下面代码执行后的输出是什么?

Posted on:2024年7月20日 at 11:00
var b = 10;
(function b() {
  b = 20;
  console.log(b);
})();

先看浏览器中的执行结果:

解析

原文转自:https://fe.ecool.fun/topic/e47771cd-99ca-4650-96ce-66087c1418a4