, , ...
var methods = (function() {
var myvar;
function method1() {
myvar = 1;
}
function method2() {
console.log(myvar);
}
return {
method1: method1,
method2: method2
}
}());
domElement.plugin({
method1: methods.method1,
method2: methods.method2
});
, javascript , , , , , . , , . , .