Skip to content

Instantly share code, notes, and snippets.

@anubhavsrivastava
Created February 3, 2019 15:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anubhavsrivastava/d178cb41a11795a078a327e3d9e3635c to your computer and use it in GitHub Desktop.
Save anubhavsrivastava/d178cb41a11795a078a327e3d9e3635c to your computer and use it in GitHub Desktop.
function add(x){
let sum = x;
function resultFn(y){
sum +=y;
return resultFn;
}
resultFn.valueOf = function(){ return sum };
return resultFn;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment