Created
February 28, 2020 21:24
-
-
Save munkacsitomi/e28111682c404500a62000ae5c908475 to your computer and use it in GitHub Desktop.
Module exports
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
exports.messages = ['Hello', 'This is a message', 'And another message']; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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