Skip to content

Commit

Permalink
Merge pull request AdarshAddee#12 from Suraj-Bhandarkar-S/main
Browse files Browse the repository at this point in the history
Print 1 to 100 without numbers in js
  • Loading branch information
AdarshAddee authored Oct 1, 2022
2 parents 2b5cf73 + e9cc82e commit 1e3452a
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
4 changes: 3 additions & 1 deletion CONTRIBUTORS.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@
| ------|----------|---------- |
| Adarsh Addee | <a href="https://github.com/AdarshAddee">Adarsh Addee</a> | <a href="mailto:[email protected]">E-Mail</a> |


| Name | Github Link | Email ID |
| ------|----------|---------- |
| Suraj Bhandarkar S | <a href="https://github.com/Suraj-Bhandarkar-S">Adarsh Addee</a> | <a href="mailto:[email protected]">E-Mail</a> |

<br>
<h1>
Expand Down
7 changes: 7 additions & 0 deletions Javascript/print 1 to 100 without numbers.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
let limit = "..........".length;

for(let i = ".".length;i <= (limit * limit);i++){
console.log(i);
}

// to run the file in vscode: node '.\print 1 to 100 without numbers.js'

0 comments on commit 1e3452a

Please sign in to comment.