React.js

How to import/export in JS using module exports and require?

How to import/export in JS using module exports and require?
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));

Resources

https://alligator.io/js/modules-es6/

Понравилась статья?

Подпишитесь на нашу рассылку, чтобы получать новые статьи и обновления