Skip to content

Instantly share code, notes, and snippets.

@arieljake
Created April 27, 2015 19:27
Show Gist options
  • Select an option

  • Save arieljake/09a77631c901babb1a32 to your computer and use it in GitHub Desktop.

Select an option

Save arieljake/09a77631c901babb1a32 to your computer and use it in GitHub Desktop.
// V1
var actions = {};
function doWork(params)
{
var actionName = params.actionName;
var resultHandler = function(result)
{
console.dir(result);
}
return actions[actionName](params, resultHandler);
}
// V2
var actions = {};
var resultHandler = function(result)
{
console.dir(result);
}
function doWork(params)
{
var actionName = params.actionName;
return actions[actionName](params, resultHandler);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment