我正在学习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();