所以似乎Javascript中没有函数静态变量。我正在尝试在函数内增加一个变量,但我不想这样做:
function countMyself() {
if ( typeof countMyself.counter == 'undefined' ) {
// It has not... perform the initilization
countMyself.counter = 0;
}
}
我想用闭包来做,但我很难理解这些。
有人在另一个问题中提出了这个建议:
var uniqueID = (function() {
var id = 0;
return function() { return id++; };
})();
但是当我提醒 uniqueID 时,它所做的只是打印这一行:return function() { return id++; };
所以我想知道如何在不污染全局范围的情况下增加函数中的变量。