Skip to content

Instantly share code, notes, and snippets.

View binbin's full-sized avatar
🏠
Working from home

Beta binbin

🏠
Working from home
  • 18:07 (UTC +08:00)
View GitHub Profile
function plus(n,r){
var result = r||0;
result+=n;
function add(n){
return plus(n,result)
}
add.toString = function(){
return result;
}
return add;