Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

107
Views
Accesing exported module

Having such a simple module (exports.js):

module.exports.val1 = "boz";
exports.val2 = "bar";

module.exports.fun1 = function Something() {
  console.log("bla bla");
};

exports.fun2 = function Something() {
  console.log("bla bla");
};

exports = "abc"; //1
module = "def"   //2

console.log(module);
console.log(exports);

and the file importing it(index.js):

var imp = require("./exports")
console.log(imp)

i get on the output:

def 
abc 
{val1: "boz", val2: "bar", fun1: ƒ Something(), fun2: ƒ Something()}

How can the imports be accessible/defined in the index file since it's overwritten on the #1 & #2 in the module file itself (what can be observed getting this 2 strings from module logs)?

over 4 years ago · Santiago Trujillo
1 answers
Answer question

0

I believe it is the same as if you called a function with an object. The function gets a copy of the reference to the object and so it can manipulate the object, all reassignment does is make the local copy of the reference in the function point elsewhere.

function caller() {
   var obj = {}
   callMe(obj);
   obj.name; // "Hello"

}

function callMe(obj) {
   obj.name = "Hello";
   obj = {};
}

Note above that the obj the caller passes in is unaffected by the reassignment in "callMe". See "pass by value".

over 4 years ago · Santiago Trujillo Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!