Skip to content

Instantly share code, notes, and snippets.

@cocodrino
Created June 16, 2012 17:21
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 cocodrino/2942007 to your computer and use it in GitHub Desktop.
Save cocodrino/2942007 to your computer and use it in GitHub Desktop.
code blog - clausuras 3...
var aumentar_valor2 = (function(x){
var numero = x;
return function(){
return numero+=1;
};
})(0);
console.log(aumentar_valor2()) //1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment