So i just started learning js and i can’t solve this excercise:
Create a file named
looping-through-arrays.js
.In that file, define a variable named pets that references this array:
['cat', 'dog', 'rat']
Create a for loop that changes each string in the array so that they are plural.
You will use a statement like this inside the for loop:
pets[i] = pets[i] + 's'
I tried something like this code but apparently it doesn’t work:
JavaScript
x
6
1
let pets = ["cat", "dog", "rat"];
2
for(let i = 0; i <= pets.length; i++){
3
pets[i] = pets[i] + "s";
4
};
5
console.log(pets);
6
Advertisement
Answer
JavaScript
1
7
1
//Try this one
2
let pets = ["cat", "dog", "rat"];
3
for(let i = 0; i < pets.length; i++){
4
pets[i] = pets[i] + "s";
5
};
6
console.log(pets);
7