Created
May 5, 2020 12:09
-
-
Save anmolsukki/3ed41162951da37225fc9d69b729a2be to your computer and use it in GitHub Desktop.
[ NodeJs ] Export Module ( https://repl.it/@anmolsukki/ExportFile )
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 add = require("./Utils") | |
| const sum = add(4, -2) | |
| console.log(sum) |
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 add = function(a, b) { | |
| return a + b | |
| } | |
| module.exports = add |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment