Repeating Actions with Loops
Sometimes In our program we want to repeat some action multiple times.
for-ex I want to console.log("Hello world") 4 times.
The hard way to do that would be to wrote code again and again. this code
works but the idea of programming is to make thing...
lovekush.hashnode.dev2 min read