function createCounter() { var count = 0; function addCount() { count++; return count; } return addCount; // => 重點,回傳一個addCount ...
確定! 回上一頁