js作用域和变量提升

Function declarations and variable declarations are always moved (“hoisted”) invisibly to the top of their containing scope by the JavaScript interpreter.

example1 :

    var foo = 1;
    function bar() {
      if (!foo) {
        var foo = 10;
      }
      console.log(foo); // 10
    }
    bar();

example2 : 

    var a = 1;
    function b() {
      a = 10;
      return;
      function a() { }
    }
    b();
    console.log(a); // 1

example3 :

    var x = 1;
    console.log(x); // 1
    if (true) {
      var x = 2;
      console.log(x); // 2
    }
    console.log(x); // 2

example4:

复制代码
  function foo() {
      var x = 1;
      if (x) {
        (function () {
          var x = 2;
          // some other code
        } ());
      }
      // x is still 1.
    }
复制代码

Named Function Expressions

You can give names to functions defined in function expressions, with syntax like a function declaration. This does not make it a function declaration, and the name is not brought into scope, nor is the body hoisted. Here’s some code to illustrate what I mean:

example 5:

复制代码
    foo(); // TypeError "foo is not a function"
    bar(); // valid
    baz(); // TypeError "baz is not a function"
    spam(); // ReferenceError "spam is not defined"

    var foo = function () { }; // anonymous function expression ('foo' gets hoisted)
    function bar() { }; // function declaration ('bar' and the function body get hoisted)
    var baz = function spam() { }; // named function expression (only 'baz' gets hoisted)

    foo(); // valid
    bar(); // valid
    baz(); // valid
    spam(); // ReferenceError "spam is not defined"
复制代码

example 6:

   getName(); //5
    var getName = function () { console.log(4); };
    function getName() { console.log(5); };
    getName();//4

example 7:

复制代码
    function Foo() {
      getName = function () { console.log(1); };
      return this;
    }
    Foo.getName = function () { console.log(2); };
    Foo.prototype.getName = function () { console.log(3); };
    var getName = function () { console.log(4); };
    function getName() { console.log(5); };

    Foo.getName(); //2 
    getName(); //4
    Foo().getName(); //1
    getName(); //1
    new Foo.getName(); //2
    new Foo().getName(); //3 
    new new Foo().getName(); //3
复制代码

 

posted @   记忆的森林  阅读(765)  评论(0编辑  收藏  举报
(评论功能已被禁用)
编辑推荐:
· Linux系列:如何用 C#调用 C方法造成内存泄露
· AI与.NET技术实操系列(二):开始使用ML.NET
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
· 理解Rust引用及其生命周期标识(上)
阅读排行:
· 单线程的Redis速度为什么快?
· 展开说说关于C#中ORM框架的用法!
· 阿里最新开源QwQ-32B,效果媲美deepseek-r1满血版,部署成本又又又降低了!
· Pantheons:用 TypeScript 打造主流大模型对话的一站式集成库
· SQL Server 2025 AI相关能力初探
点击右上角即可分享
微信分享提示