We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent df99c0e commit f644731Copy full SHA for f644731
problem17/problem.md
@@ -0,0 +1,3 @@
1
+ Run a for loop. 30 to 86. And when this loop goes to 44, it will brake. Code that thing
2
+
3
+ একটা ফর লুপ চালাও। ৩০ থেকে ৮৬ পর্যন্ত। আর এই লুপ ৪৪ এ গেলে ব্রেক করবে। সেই জিনিস কোড করে দেখাও
problem17/problem17.js
@@ -0,0 +1,11 @@
+/* Run a for loop. 30 to 86. And when this loop goes to 44, it will brake. Code that thing */
4
+for( var i = 30; i <= 86; i++){
5
6
+ if( i == 44){
7
+ break;
8
+ }
9
+ console.log(i);
10
+}
11
0 commit comments