Advertisement
Meruem

somma interi

Jun 26th, 2015
207
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function somma_precedenti(v){var l={},i,c1=0;
  2.     if(v==null){return l;}
  3.     for(i=0;i<v.lenght;i++){ c1=c1+v[i].numero;
  4.         l={x:c1,succ:l};
  5.     }
  6. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement