Skip to content

Commit

Permalink
print 1 to 100 without numbers in js
Browse files Browse the repository at this point in the history
  • Loading branch information
Suraj-Bhandarkar-S committed Oct 1, 2022
1 parent b319269 commit 788a3ec
Showing 1 changed file with 7 additions and 0 deletions.
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 788a3ec

Please sign in to comment.