The Complete JavaScript Course 2018: Build Real Projects!
- Description
- Curriculum
- FAQ
- Reviews

*** The #1 bestselling JavaScript course on Udemy! ***
“Excellent course. Jonas explains the core concepts in javascript that are usually glossed over in other courses. And he does it in a manner that is clear and concise.” — John Collins
…
Do you want to learn the number #1 programming language that powers the internet?
Are you tired of wasting your time and money on random youtube videos or JavaScript courses that are either too simple, or too difficult to follow?
Or are you struggling to deeply understand and apply JavaScript to real projects?
If your answer is a big YES… Then this is exactly the course you are looking for!
…
So what is the course about?
This is a truly complete JavaScript course, that goes beyond what other JavaScript courses out there teach you.
I will take you from a complete JavaScript beginner to an advanced developer. You will not just learn the JavaScript language itself, you will also learn how to program. How to solve problems. How to structure and organize code using common JavaScript patterns.
Come with me on a journey with the goal of truly understanding the JavaScript language. And I explain everything on the way with great detail!
You will learn “why” something works in JavaScript, not just “how”. Because in the modern JavaScript world of today, you need more than just knowing how something works. You need to debug code, you need to understand code, you need to be able to think about code.
To achieve our goal together, the course contains coding sessions, coding challenges, theory lectures, real-world projects and a final course exam.
This course is different because it’s not just about writing code, it’s also about how and why code works the way it does. Because it’s the perfect mix between theory and practice. Because it focuses not only on small coding examples, but also on real-world projects and use cases.
So, by the end of the course, you will be a capable JavaScript developer, able to write, understand and debug JavaScript code using all the powerful features the language offers to us.
…
Here is exactly what we cover in this course:
• All the JavaScript and programming fundamentals: things like variables, data types, boolean logic, if/else statements, loops, functions, objects, arrays, and more.
• Everything you need to know in order to gain a deep understanding of how JavaScript works behind the scenes: execution contexts, hoisting, scoping, the ‘this’ keyword, and more.
• How to make JavaScript code interact with webpages: DOM manipulation. Learn how to select and change webpage elements, create new elements and handle DOM events.
• Complex JavaScript features such as function constructors, prototypal inheritance, first-class functions, closures, the bind and apply methods, and more.
• We are going to code 3 beautiful real-world apps to apply our knowledge and learn new concepts (I provide the starter HTML and CSS code for these projects).
• Learn how to organize and structure your code using modules and functions, how to create data privacy and encapsulation, and why that’s so important.
• What’s new in the most modern version of JavaScript: new features of ES6 / ES2015.
• Asynchronous JavaScript: the event loop, promises, async/await, AJAX calls and APIs.
• Modern JavaScript in 2018: Learn how to set up a modern development workflow with NPM, Webpack, Babel and ES6 modules.
…
Let’s now find out if this course is for you. It’s a perfect fit if…
Student #1: You want to gain a deep understanding of the most popular programming language in the world: JavaScript.
Student #2: You have taken other JavaScript courses but: 1) still don’t really understand JavaScript, or 2) still don’t feel confident to code real-world apps. This course is perfect for you!
Student #3: You are interested in using popular libraries/frameworks like React, Angular or Node.js.
Student #4: You want to get started with programming in general: JavaScript is a great language to learn how to code.
…
Now it’s your turn to decide. This is what you get:
• Lifetime access to HD quality videos. No monthly subscription. Learn at your own pace, whenever you want.
• English closed captions (not the auto-generated ones provided by Udemy).
• All videos are downloadable. Learn wherever you want, even without an internet connection!
• Downloadable starter code and final code for each section.
• Free helpful support in the course Q&A when you have questions or get stuck.
• Multiple coding challenges to practice your new skills (solutions included).
• A final course exam with 30 questions to test your JavaScript knowledge.
Sounds great? Then start this adventure today by clicking the “Take this course” button, and join me in the only JavaScript course that you will need!
-
4Section Intro
-
5Download the Code
-
6Let's start coding!
-
7A Brief Introduction to JavaScript
-
8Variables and Data Types
-
9Variable Mutation and Type Coercion
-
10Basic Operators
-
11Operator Precedence
-
12Coding Challenge 1
-
13Coding Challenge 1: Solution
-
14If / else Statements
-
15Boolean Logic
-
16The Ternary Operator and Switch Statements
-
17Truthy and Falsy Values and Equality Operators
-
18Coding Challenge 2
-
19Coding Challenge 2: Solution
-
20Functions
-
21Function Statements and Expressions
-
22Arrays
-
23Coding Challenge 3
-
24Coding Challenge 3: Solution
-
25Objects and Properties
-
26Objects and Methods
-
27Coding Challenge 4
-
28Coding Challenge 4: Solution
-
29Loops and Iteration
-
30Coding Challenge 5
-
31Coding Challenge 5: Solution, Part 1
-
32Coding Challenge 5: Solution, Part 2
-
33JavaScript Versions: ES5, ES6 / ES2015 and ES6+
-
34Section Intro
-
35Download the Code
-
36How Our Code Is Executed: JavaScript Parsers and Engines
-
37Execution Contexts and the Execution Stack
-
38Execution Contexts in Detail: Creation and Execution Phases and Hoisting
-
39Hoisting in Practice
-
40Scoping and the Scope Chain
-
41The 'this' Keyword
-
42The 'this' Keyword in Practice
-
43Section Intro
-
44Download the Code
-
45The DOM and DOM Manipulation
-
465-Minute HTML and CSS Crash Course
-
47Project Setup and Details
-
48First DOM Access and Manipulation
-
49Events and Event Handling: Rolling the Dice
-
50Updating Scores and Changing the Active Player
-
51Implementing Our 'Hold' Function and the DRY Principle
-
52Creating a Game Initialization Function
-
53Finishing Touches: State Variables
-
54Coding Challenge 6
-
55Coding Challenge 6: Solution, Part 1
-
56Coding Challenge 6: Solution, Part 2
-
57Coding Challenge 6: Solution, Part 3
-
58Section Intro
-
59Download the Code
-
60Everything Is an Object: Inheritance and the Prototype Chain
-
61Creating Objects: Function Constructors
-
62The Prototype Chain in the Console
-
63Creating Objects: Object.create
-
64Primitives vs. Objects
-
65First Class Functions: Passing Functions as Arguments
-
66First Class Functions: Functions Returning Functions
-
67Immediately Invoked Function Expressions (IIFE)
-
68Closures
-
69Bind, Call and Apply
-
70Coding Challenge 7
-
71Coding Challenge 7: Solution, Part 1
-
72Coding Challenge 7: Solution, Part 2