Pages

Tuesday, 26 December 2017

1, 3, 6, 10, 15, 21,............ what will be the 10th element?

for(i=1,j=0; i<=10; i++){ j=i+j; console.log(j); }

No comments:

Post a Comment