var object = {}; // Global Object
(function() {
var theArg, google, yahoo;
object.google = function(arg) {
theArg = arg;
alert(theArg);
}
object.yahoo = function() {
alert(theArg);
}
module.exports = yahoo;
})();
// This will set initial value of
google("Hello World");
私はこのようなものを呼び出すことができますmodule.exports = yahoo
; yahoo
他の場所で関数を呼び出します。