Javascript – 为什么用IIFE返回一个闭包?

我刚刚在 this网站上发现关于闭包的一半不错的解释.他们向我们展示了以下工厂函数,以查看工作闭包:

var car;
function carFactory(kind) {
  var wheelCount,start;
  wheelCount = 4;
  start = function() {
    console.log('started with ' + wheelCount + ' wheels.');
  };

  // Closure created here.
  return (function() {
    return {
      make: kind,wheels: wheelCount,startEngine: start
    };
  }());
}

car = carFactory('Tesla');

// => Tesla
console.log(car.make);

// => started with 4 wheels.
car.startEngine();

为什么这个人将闭包作为一个立即调用函数表达式(IIFE)返回,该表达式返回一个具有他想要共享的属性的对象?我觉得IIFE是不必要的.如果我只是立即返回对象,这将导致相同的事情.我错过了什么吗?

//Closure created here
  return{
    make: kind,startEngine: start
  };

解决方法

是的我不认为你错过任何东西.

刚刚制作了一个封闭的创作.如果您只是返回该对象,则不会将其视为一个(尽管不是最佳示例).

根据该网站的作者comment

You need the self-executing function because that is the act that creates the closure. JavaScript only has function-level scope so the only way to bind the free variables into the enclosing scope is by invoking a function.

相关文章

前言 做过web项目开发的人对layer弹层组件肯定不陌生,作为l...
前言 前端表单校验是过滤无效数据、假数据、有毒数据的第一步...
前言 图片上传是web项目常见的需求,我基于之前的博客的代码...
前言 导出Excel文件这个功能,通常都是在后端实现返回前端一...
前言 众所周知,js是单线程的,从上往下,从左往右依次执行,...
前言 项目开发中,我们可能会碰到这样的需求:select标签,禁...