00:13:28 Zac Gordon: https://webpack.js.org/guides/installation/ 00:22:01 Zac Gordon: 1. Name a few data types in JavaScript 00:22:38 Zac Gordon: 2. Write an object with a property and method 00:22:48 Zac Gordon: var myObj = {}; 00:24:03 Zac Gordon: 3. Why is knowing the different types of DOM Nodes important for JavaScript? ie Element Node vs Text Node 00:25:01 Zac Gordon: 4. What is a helpful DOM API method for adding elements to a page 00:25:45 Zac Gordon: What does "Is this Vanilla JavaScript or something else" mean? 00:26:42 Zac Gordon: 6. Name two web APIs that let us make HTTP requests with JavaScript 00:27:17 Zac Gordon: 7. Something you have learned about JavaScript you didn't know before the Bootcamp 00:28:38 Karen Neumann: var myObject = { name: "karen" } myObject.init = function() { console.log ( myObject.name ); } myObject.init();