mirror of
https://github.com/kevin-DL/complete-node-bootcamp.git
synced 2026-01-11 19:14:26 +00:00
18 lines
422 B
JavaScript
18 lines
422 B
JavaScript
// console.log(arguments);
|
|
// console.log(require("module").wrapper);
|
|
|
|
// module.exports
|
|
const C = require("./test-module-1");
|
|
const calc1 = new C();
|
|
console.log(calc1.add(2, 5));
|
|
|
|
// exports
|
|
// const calc2 = require("./test-module-2");
|
|
const { add, multiply } = require("./test-module-2");
|
|
console.log(multiply(2, 5));
|
|
|
|
// caching
|
|
require("./test-module-3")();
|
|
require("./test-module-3")();
|
|
require("./test-module-3")();
|