モジュールに引数を渡す方法を知りたい
たとえば、モジュールを呼び出すときにカウンターの値を渡したいと思います.smtのように
testModule.resetCounter(20);
( http://www.addyosmani.com/resources/essentialjsdesignpatterns/book/#modulepatternjavascriptのコード サンプル)
var testModule = (function () {
var counter = 0;
return {
incrementCounter: function () {
return counter++;
},
resetCounter: function () {
console.log( "counter value prior to reset: " + counter );
counter = 0;
}
};
})();
// Usage:
// Increment our counter
testModule.incrementCounter();
// Check the counter value and reset
// Outputs: 1
testModule.resetCounter();