UNPKG

javascripting

Version:

Learn JavaScript by adventuring around in the terminal.

8 lines (5 loc) 123 B
const pets = ['cat', 'dog', 'rat'] for (let i = 0; i < pets.length; i++) { pets[i] = pets[i] + 's' } console.log(pets)