JavaScript Unlocked: The Complete Journey from Novice to Pro – Ultimate Full Course – Part 1



JavaScript Unlocked: The Complete Journey from Novice to Pro – Ultimate Full Course – Part 1

JavaScript Unlocked: The Complete Journey from Novice to Pro - Ultimate Full Course - Part 1

This comprehensive 289-part JavaScript course will take you from beginner to pro! Learn how to build dynamic websites, interactive web applications, and even create your own games. With practical examples and hands-on projects, this course will equip you with the skills you need to excel in the world of web development. You will find no YouTube series this comprehensive, so get to learning!

Subscribe to my channel for more educational coding videos.

Part 1 of 8-part series. Link to JavaScript course playlist: https://www.youtube.com/playlist?list=PLEcZUKhPzlA2ZcVaNJdbWqzuJPIKGbeVA

Link to materials for the course: https://github.com/jonasschmedtmann/complete-javascript-course

⭐️Time Stamps⭐️
#1 (00:00:00) Intro
#2 (00:05:26) Watch Before You Start
#3 (00:11:33) Setting Up Our Code Editor
#4 (00:20:53) Javascript Fundamentals Part 1
#5 (00:26:58) A Brief Introduction to JavaScript
#6 (00:38:11) Linking a JavaScript File
#7 (00:54:06) Values and Variables
#8 (01:10:11) Data Types
#9 (01:29:30) let const and var
#10 (01:39:28) Basic Operators
#11 (01:59:00) Operator Precedence
#12 (02:10:19) Coding Challenge 1
#13 (02:20:48) Strings and Template Literals
#14 (02:31:46) Taking Decisions if else Statements
#15 (02:44:36) Coding Challenge 2
#16 (02:50:58) Type Conversion and Coercion
#17 (03:07:39) Truthy and Falsy Values
#18 (03:17:42) Equality Operators == VS. ===
#19 (03:33:24) Boolean Logic
#20 (03:41:55) Logical Operators
#21 (03:52:33) Coding Challenge 3
#22 (04:07:39) The Switch Statement
#23 (04:20:50) Statements and Expressions
#24 (04:26:59) The Conditional (Ternary) Operator
#25 (04:37:02) Coding Challenge 4
#26 (04:46:14) JavaScript Releases ES5 ES6and and ESNext
#27 (05:00:33) Section Intro
#28 (05:01:10) Activating Strict Mode
#29 (05:11:37) Functions
#30 (05:30:45) Function Declarations vs. Expressions
#31 (05:41:25) Arrow Functions
#32 (05:51:18) Functions Calling Other Functions
#33 (06:01:26) Reviewing Functions
#34 (06:17:04) Coding Challenge 1
#35 (06:35:16) Introduction to Arrays
#36 (06:56:51) Basic Array Operations (Methods)
#37 (07:09:44) Coding Challenge 2
#38 (07:19:20) Introduction to Objects
#39 (07:25:29) Dot vs. Bracket Notation
#40 (07:44:50) Object Methods
#41 (08:07:55) Coding Challenge 3
#42 (08:20:54) Iteration The for Loop
#43 (08:32:06) Looping Arrays Breaking and Continuing
#44 (08:54:08) Looping Backwards and Loops in Loops
#45 (09:06:01) The while Loop
#46 (09:17:54) Coding Challenge 4