Skip to content

Instantly share code, notes, and snippets.

@valex
Created July 8, 2019 13:10
Show Gist options
  • Save valex/6ff7b9717c630b937e81914c65811691 to your computer and use it in GitHub Desktop.
Save valex/6ff7b9717c630b937e81914c65811691 to your computer and use it in GitHub Desktop.
Упр №1, стр 108
var animals = ["Кот", "Рыба", "Лемур", "Комодский варан"]
for(var i=0; i < animals.length; i++) {
animals[i] = animals[i] + " - прекрасное животное";
}
console.log(animals);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment