也可以寫成: function add() { var counter = 0; return function() {return counter += 1;} // closure } var foo = add(); foo(); // counter = 1
確定! 回上一頁