javascript
123456789101112
// calculator.js
const add = function (a, b) {
return a + b;
};
module.exports = add;
//index.js
const add = require("./");
console.log(add(2, 3));
// calculator.js
const add = function (a, b) {
return a + b;
};
module.exports = add;
//index.js
const add = require("./");
console.log(add(2, 3));
Подпишитесь на нашу рассылку, чтобы получать новые статьи и обновления