Skip to content

输出是什么?

Posted on:2021年7月3日 at 22:09
function getAge() {
  "use strict";
  age = 21;
  console.log(age);
}

getAge();

使用 "use strict",你可以确保不会意外地声明全局变量。我们从来没有声明变量 age,因为我们使用 "use strict",它将抛出一个引用错误。如果我们不使用 "use strict",它就会工作,因为属性 age 会被添加到全局对象中了。

原文转自:https://fe.ecool.fun/topic/56761806-2660-4eac-8e8a-ced03357c95d