00:04:33 Aileen F: me 00:05:27 Zac Gordon: https://github.com/zgordon/wcdc-2017/blob/master/01-The-DOM/04-creating-and-appending.html 00:05:44 Zac Gordon: https://github.com/zgordon/wcdc-2017/blob/master/01-The-DOM/04-creating-and-appending.html 00:05:49 Zac Gordon: // 1. Create a new post article with title (w link) and content // 2. Append the article to the current list of articles 00:28:55 Zac Gordon: array[array.length-1] 00:32:44 Zac Gordon: https://javascriptforwp.com/courses/javascript/sections/the-document-object-model-dom/lesson/creating-nodes/ 00:32:49 Zac Gordon: https://javascriptforwp.com/courses/javascript/sections/the-document-object-model-dom/lesson/adding-nodes-to-the-dom/ 00:39:10 Amber Chunn: https://jsbin.com/nuxatac/edit?html,js,output 00:39:24 Amber Chunn: Found the missing comma ;) 00:41:09 Zac Gordon: https://codesandbox.io/s/1vvj3212w4 00:41:31 Amber Chunn: audio keeps going in and out- fyi 00:43:14 @AllanAndresCh: I can’t hear just me the lag? 00:44:09 Amber Chunn: Sorry missed most of the question 00:44:11 Zac Gordon: Audio issues again? 00:44:22 @AllanAndresCh: I can’t understand cause the lag. 00:45:30 Jon Harp: DONE! https://jsbin.com/yonigeg/edit?html,console,output 00:50:08 Zac Gordon: https://javascriptforwp.com/courses/javascript/sections/the-document-object-model-dom/ 00:50:14 Zac Gordon: https://javascriptforwp.com/courses/javascript/sections/events-in-javascript/ 00:52:15 Amber Chunn: How would you use a loop with appending to the page? 00:52:29 Amber Chunn: Specifically a list 00:52:48 Zac Gordon: Var articles = my articles; 00:53:03 Amber Chunn: my failed try: https://jsbin.com/rativok/edit?html,js 00:53:08 Zac Gordon: for ( let article of articles ) { 00:53:21 Zac Gordon: container.appendChild(article) 00:53:22 Zac Gordon: } 01:05:45 Amber Chunn: I think I was originally trying to create a method, which is why I used a object. That’s good to know about the array and memory. Thanks so much for coding this one out!