function createFoo () {
function privateFunc () {}
return {
func: function () {
privateFunc();
}
};
}var foo = createFoo();
foo.func();
>
> Könnte man also sagen, dass die obige Variante "statisch" ist?
Inwiefern statisch? Was bedeutet das? Im Gegensatz zu dynamisch?
Mathias
--
[Chaplin - An Application Architecture Using Backbone.js](https://github.com/chaplinjs/chaplin)