8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5208f55 commit d9d2874Copy full SHA for d9d2874
sumOfArr.js
@@ -0,0 +1,6 @@
1
+let a=[1,3,2,4,3,5]
2
+let sum=0
3
+for(let i=0;i<a.length;i++){
4
+ sum=sum+a[i];
5
+}
6
+console.log(sum)
0 commit comments