自訂模組

定義模組

function hello() {
  console.log('Hello World')
}

function bye() {
  console.log('bye')
}

module.exports = {
  hello,
}

呼叫模組

const m = require('./my-module')

m.hello()

自己開發的模組

results matching ""

    No results matching ""