“MODULES.Exports JavaScript” Ответ

JS -экспорт

// First Export from other file
export default exampleFunction;
// for multiple exports use:
module.exports =  { exampleFunction1, exampleFunction2 };

// Then we import in the file where we want to use our functions
import exampleFunction from "./otherFile.js";
// for multiple imports, we desctructure
import { exampleFunction1, exampleFunction2 } from "./otherFile.js"

// Check MDN for more info on JS exports.
// NOTE: if running on node, add "type": "module" to your package.json file
//
Jarett Sisk

MODULES.Exports JavaScript

//2 ways of module.exports
// 1
function celsiusToFahrenheit(celsius) {
  return celsius * (9/5) + 32;
}
 
module.exports.celsiusToFahrenheit = celsiusToFahrenheit;
 
//2
module.exports.fahrenheitToCelsius = function(fahrenheit) {
  return (fahrenheit - 32) * (5/9);
};
Lois Jerson Gonzales Bulan Campus

Что означают "module.exports" и "exports.methods" в Nodejs / Express

// foo.js
console.log(this === module); // true
SAMER SAEID

Ответы похожие на “MODULES.Exports JavaScript”

Вопросы похожие на “MODULES.Exports JavaScript”

Больше похожих ответов на “MODULES.Exports JavaScript” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования