NodeJS では、キーワードを使用して関数を定義するthis
と、それが公開されます。
例えば:
// module.js
this.func1 = function () {
console.log('func1');
}
次に、require('module')
func1 にアクセスできる場合。
module.exports
とどう違うのか知りたいです。
ありがとう
NodeJS では、キーワードを使用して関数を定義するthis
と、それが公開されます。
例えば:
// module.js
this.func1 = function () {
console.log('func1');
}
次に、require('module')
func1 にアクセスできる場合。
module.exports
とどう違うのか知りたいです。
ありがとう