- John
- Paul
- Carl
- Helen
Week 4 Example 2
001window.onload = function(){ 002 const contentElement = document.getElementById('content'); 003 const firstChild = contentElement.firstChild; 004 console.log(firstChild); 005 const LIST = document.getElementById('list'); 006 const numberOfChildren = LIST.children.length; 007 console.log(numberOfChildren); 008 for(let i = 0; i < LIST.children.length; i++) 009 { 010 console.log(LIST.children[i].innerHTML); 011 } 012}