minor renovations, beautify round 2 (final)

This commit is contained in:
Ilya Kantor 2015-03-12 10:42:43 +03:00
parent 8410ce6421
commit 14d324c9e4
9 changed files with 26 additions and 23 deletions

View file

@ -19,7 +19,7 @@ var people = [ vasya , masha , vovochka ];
people.sort(compareAge);
// вывести
for(var i=0; i<people.length; i++) {
for(var i = 0; i < people.length; i++) {
alert(people[i].name); // Вовочка Маша Вася
}
```