Overview: Loops are very useful in programming, whenever we want to perform any task and we want to repeat that task a particular number of times. For instance, If we want to print orange 6 times : console.log('orange'); //Output: orange console.log(...
beginnerabhay.hashnode.dev10 min read
Very nice writing... Understood in only one read.
Vivek Bhatt
Currently learning web development
Iterating object through for loop was new for me.