00:03:43 Zac Gordon: https://webpack.js.org/configuration/devtool/ 00:05:15 Zac Gordon: https://github.com/zgordon/gutenberg-course/blob/4b73b46e4a0d45f5e60d6e04a5b566535635402d/webpack.config.js#L44 00:16:22 Zac Gordon: Go To 00:17:45 Zac Gordon: Go To Symbol 00:17:46 Zac Gordon: https://stackoverflow.com/questions/36154283/method-list-in-visual-studio-code 00:18:22 Zac Gordon: Code Navigation in VSCode 00:18:31 Zac Gordon: https://code.visualstudio.com/docs/editor/editingevolved 00:20:08 Zac Gordon: 1. Name a few data types in JavaScript 00:20:55 Zac Gordon: 2. Write an object with a property and method var myObject = XXX; 00:21:21 Zac Gordon: Bonus if you can call that property and method using dot notation 00:22:04 Zac Gordon: 3. Why is knowing the different types of DOM Nodes important for JavaScript? ie Element Node vs Text Node 00:22:38 Zac Gordon: 4. What is a helpful DOM API method for adding elements to a page 00:23:29 Zac Gordon: 5. What does "Is this Vanilla JavaScript or something else" mean? 00:24:01 Zac Gordon: 6. Name two web APIs that let us make HTTP requests with JavaScript 00:24:29 Zac Gordon: 7. Something you have learned about JavaScript you didn't know before the Bootcamp 00:26:26 Jon Harp: var myObj = {}; myObj.name = 'Jon'; myObj.sayHello = function() { console.log('Hello!'); }; myObj.sayHello();