UNPKG

javascripting

Version:

Learn JavaScript by adventuring around in the terminal.

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