JavaScript
Loops:
Loops are handy, if you want to run the same code over and over again, each time with a different value.
For example:
var fruits=["Apple","Banana","Kiwi","Pineapple"]
for(i=0;i<fruits.length;i++)
{
console.log(fruits[i])
}
JavaScript Loop:...
nikhil26.hashnode.dev2 min read
DILEEPA NV
software developer
Nice blog brother