Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Anna Khodun
4,728 Pointsmore about function printList
Hi, Where I can read more about created & how works this function & maybe practice for this
//function printList( list ) { var listHTML = '<ol>'; for (var i = 0; i < list.length; i += 1) { listHTML += '<li>' + list[i] + '</li>'; } listHTML += '</ol>'; print(listHTML); }
function print(html) { document.write(html); }// Thank you
1 Answer

Steven Parker
221,326 PointsThis function creates HTML code from a list of items and then displays that code on the web page. Did you have any specific question(s) about what it does?
You should get opportunities to practice code like this as you proceed in the course(s). Check the Library for additional practice workshops.