JavaScript Full Course
(Premium Version with Certificate)
2.1 Intro to the Project
2.2 Basics of Math and Syntax
2.3 Practical Examples of Math
2.4 Order of Operations and Brackets
2.5 Example of Order of Operations
2.6 Examples of Brackets
2.7 Math with Floats
2.8 How to Calculate Money
2.9 How to Round Numbers
2.10 Practical Example of Rounding
2.11 Search for Code On Your Own
2.12 Conclusion and Exercises
3.1 String = Text
3.2 Syntax for Strings
3.3 Different Types of Values
3.4 Strings and Order of Operations
3.5 Calculating Money with Strings
3.6 Recreate an Entire Line of Text
3.7 Use Strings with Other Features
3.8 Double-Quote Strings
3.9 Escape Characters
3.10 Template Strings and Interpolation
3.11 Multi-Line Strings and Which String to Use
3.12 Conclusion and Exercises
4.1 Set Up Code Editor
4.2 HTML Review
4.3 HTML Syntax
4.4 Multiple Spaces are Combined Into 1 Space
4.5 CSS Review
4.6 CSS Syntax
4.7 HTML Attributes
4.8 Syntax Rules for Attributes
4.9 Class Attribute
4.10 The HTML Structure
4.11 title Element
4.12 Live Server Setup
4.13 VSCode Setup
4.14 script Element = Add JavaScript to Website
4.15 onclick Attribute
4.16 Comments
4.17 HTML CSS Comments
4.18 console.log()
4.19 Conclusion and Exercises
5.1 Lesson Setup
5.2 Variables
5.3 Use Variables in a Calculation
5.4 Save a Calulation in a Variable
5.5 Save a String in a Variable
5.6 Syntax Rules for Variables
5.7 Semicolons ;
5.8 Change the Value of a Variable (Re-assigning)
5.9 Syntax for Re-assigning
5.10 Re-assigning a Variable to Itself
5.11 Cart Quantity Project Intro
5.12 Cart Quantity Project Setup
5.13 Create the HTML
5.14 Show Quantity Button
5.15 Increase Quantity Buttons
5.16 Reset Cart Button
5.17 Shortcuts for Re-assigning Variables
5.18 Best Practices for Naming Variables
5.19 const
5.20 var
5.21 typeof with Variables
5.22 Conclusion and Exercises