반응형

 

index.js

var greetings = require("./style_02.js");
console.debug(greetings.English())

 

 

style_01.js

const instagram = {
	English: function () {
		return "1_HELLO";
	},
	Spanish: function () {
		return "1_Hola";
	},
};

module.exports = instagram;



style_02.js

module.exports = {
	English: function () {
		return "2_HELLO";
	},

	Spanish: function () {
		return "2_Hola";
	},
};



style_03.js

exports.English = function () {
	return "3_HELLO";
};
exports.Spanish = function () {
	return "3_Hola";
};

 

 

반응형