Calling a function from variable

后端 未结 0 940
执念已碎
执念已碎 2020-11-28 12:47
function makeCounter() {
  let count = 0;
  
  return function() {
    return count++;
  }
}

makeCounter() 

alert(makeCounter()) // alerts the function itself


        
相关标签:
回答
  • 消灭零回复
提交回复
热议问题