Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialAssem Zhilkibayeva
5,717 PointsDid in a different way. Any feedback?
Did challenge in a bit different way. Any feedback is welcome!
var students = [ {name:'Jack', track:'Web Design',achievments:'460',points:'2400'}, {name:'Jane', track:'Front End Developer',achievments:'320',points:'1500'}, {name:'Ariel', track:'Back End Developer',achievments:'245',points:'4300'}, {name:'Rassel', track:'iOS Developer',achievments:'150',points:'2700'}, {name:'Albina', track:'Android Developer',achievments:'270',points:'3100'}, ];
for (var i = 0; i<students.length; i+=1) { document.write('<h2>Name: ' +students[i].name+ '</h2><br> Track: ' +students[i].track+ '<br> Achievments: ' +students[i].achievments+ '<br> Points: ' +students[i].points+ '<br><br>' ); }