Home  >  Article  >  Web Front-end  >  Simple example of closure implemented in javascript_javascript skills

Simple example of closure implemented in javascript_javascript skills

WBOY
WBOYOriginal
2016-05-16 15:49:561277browse

The example in this article describes the closure implemented by javascript. Share it with everyone for your reference. The details are as follows:

var name = "The Window";
var obj = { 
  name: "My Object", 
  getNameFunc: function() {
    return function() { 
     return this.name; 
    }; 
  } 
};
console.log( obj.getNameFunc()() );

var name = "The Window";
var obj = { 
  name: "My Object", 
  getNameFunc: function() {
    var that = this;
    return function() { 
     return that.name; 
    }; 
  } 
};
console.log( obj.getNameFunc()() );

I hope this article will be helpful to everyone’s JavaScript programming design.

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn