Created
December 6, 2018 14:57
-
-
Save schalkneethling/3600eaa934c8e68bdd0e0d533bd902dc to your computer and use it in GitHub Desktop.
Sample IIFE
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
(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