Basic for loop
I am new to AJO and would like to code a basic for loop, something like this in JavaScript,
for (let i = 0; i < cars.length; i++) {
text += cars[i] + "Car";
}
Any suggestions?
I am new to AJO and would like to code a basic for loop, something like this in JavaScript,
for (let i = 0; i < cars.length; i++) {
text += cars[i] + "Car";
}
Any suggestions?
@georgevi2 You don't have for loop. Instead, see if you can use each function to see if that helps. Take a look at this documentation,
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.