+ 1
Pls guys what does "i" stands for in JavaScript
4 Respuestas
+ 6
Thank guys, was really helpful thank God i have you all.
+ 2
If you're talking about the "i" usually used in for loop, it actually doesn't mean anything. You can use any letter. It's just a variable.
+ 2
The variable “i” is commonly used in for loops. It is more of a universal thing that is commonly used. Changing it does absolutely nothing but it helps with organization. Example:
for(var i = 0; i <= 5; i++){
console.log(i);
};
Changing i to anything, for example “muffin” changes nothing. I still recommend changing nothing for readability though.
0
Show us the code, maybe we can help you