Last active
August 29, 2015 14:06
-
-
Save 8ig8/fb08e5b2e73f9fdc32c2 to your computer and use it in GitHub Desktop.
Keyboard Maestro JS Trials
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 saySomething() { | |
return 'Something'; | |
} | |
saySomething(); | |
// Self-executing anonymous function | |
// KM can then capture the returned value | |
// Same as above, but cleaner | |
(function(){ | |
return 'Auto Something'; | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment