Skip to content

Instantly share code, notes, and snippets.

@udittyagi
Last active August 22, 2019 18:20
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/9f9fce4e1d15af3367bd031c4b1eadf9 to your computer and use it in GitHub Desktop.
Save udittyagi/9f9fce4e1d15af3367bd031c4b1eadf9 to your computer and use it in GitHub Desktop.
const exportObj = {};
(function () {
const sum = (a, b) => {
return a + b;
};
const result1 = sum(2, 3)
console.log(result1) //5
exportObj.sum = sum;
})()
const result2 = exportObj.sum(5, 8)
console.log(result2) // 13
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment