Created
July 8, 2019 13:10
-
-
Save valex/6ff7b9717c630b937e81914c65811691 to your computer and use it in GitHub Desktop.
Упр №1, стр 108
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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