Question du test Node.js

Inclure un module en NodeJS

Très facile

Comment inclure le module MathModule.js suivant dans le fichier principal ? :

// MathModule.js
module.exports = function () {
  return {
    addition       : (a, b) => a + b,
    soustration    : (a, b) => a - b,
    multiplication : (a, b) => a * b,
    division       : (a, b) => a / b
  };
};
Auteur: Jean-marie CléryStatut : PubliéeQuestion passée 755 fois
Modifier
1
Évaluations de la communautéPersonne n'a encore évalué cette question, soyez le premier !