node js export object to another directory code example
Example 1: node js module export class
module.exports = class Person {
constructor(firstName, lastName) {
this.firstName = firstName;
this.lastName = lastName;
}
display() {
console.log(this.firstName + " " + this.lastName);
}
}
Example 2: how to export module in node js
module.exports ={
//functions
}