function makeCounter() { // `i` is only accessible inside `makeCounter`. var i = 0; return function() { console.log( ++i ); };}
QQ浏览器