Skip to content

Instantly share code, notes, and snippets.

@schalkneethling
Created December 6, 2018 14:57
Show Gist options
  • Save schalkneethling/3600eaa934c8e68bdd0e0d533bd902dc to your computer and use it in GitHub Desktop.
Save schalkneethling/3600eaa934c8e68bdd0e0d533bd902dc to your computer and use it in GitHub Desktop.
Sample IIFE
(function() {
function add(num1, num2) {
return num1 + num2;
}
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment