Skip to content

Instantly share code, notes, and snippets.

@8ig8
Last active August 29, 2015 14:06
Show Gist options
  • Save 8ig8/fb08e5b2e73f9fdc32c2 to your computer and use it in GitHub Desktop.
Save 8ig8/fb08e5b2e73f9fdc32c2 to your computer and use it in GitHub Desktop.
Keyboard Maestro JS Trials
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