普通函数和自调用函数之间有什么区别-JS

时间:2020-05-06 11:06:21

标签: javascript

我正在学习Javascript

这两个代码之间有什么区别,因为它们都返回相同的输出

var getcode = function(){
    var apicode = '0]Eal(eh&2';
    return apicode;
}
getcode();
var getCode = (function() {
  var apiCode = '0]Eal(eh&2';   

  return function() {
    return apiCode;
  };
})();

getCode();

0 个答案:

没有答案