Skip to content

Commit f644731

Browse files
committedJan 31, 2023
problem 17 completed
1 parent df99c0e commit f644731

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed
 

‎problem17/problem.md

+3
Original file line numberDiff line numberDiff line change
@@ -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

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
/* Run a for loop. 30 to 86. And when this loop goes to 44, it will brake. Code that thing */
2+
3+
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

Comments
 (0)
Please sign in to comment.