Skip to content

Instantly share code, notes, and snippets.

@udittyagi
Created August 23, 2019 07:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save udittyagi/4724a801325ba3c5d5ea98424cc22a51 to your computer and use it in GitHub Desktop.
Save udittyagi/4724a801325ba3c5d5ea98424cc22a51 to your computer and use it in GitHub Desktop.
exports = {} // don't do this
const obj = {
firstName: 'Udit',
lastName: 'Tyagi'
}
// don't export items like this, as assigning will change the reference
exports = obj
//To correctly export, here we are not changing reference of exports
exports.name = obj
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment