Skip to content

Instantly share code, notes, and snippets.

@otiai10
Created September 15, 2013 12:47
Show Gist options
  • Save otiai10/6570491 to your computer and use it in GitHub Desktop.
Save otiai10/6570491 to your computer and use it in GitHub Desktop.
ふつうにいくよなぁ...
var params = {
num : 3,
callback : function(response){
console.log(response);
}
}
var runner = function(prms){
setTimeout(function(){
var res = prms.num * 100;
prms.callback(res);
},100);
}
runner(params);// 300
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment