Skip to content

Instantly share code, notes, and snippets.

@munkacsitomi
Created February 28, 2020 21:24
Show Gist options
  • Save munkacsitomi/e28111682c404500a62000ae5c908475 to your computer and use it in GitHub Desktop.
Save munkacsitomi/e28111682c404500a62000ae5c908475 to your computer and use it in GitHub Desktop.
Module exports
exports.messages = ['Hello', 'This is a message', 'And another message'];
const messageModule = require('./messages');
messageModule.messages.forEach(m => console.log(m));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment