Udemy
  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
Development
Web Development Data Science Mobile Development Programming Languages Game Development Database Design & Development Software Testing Software Engineering Development Tools No-Code Development
Business
Entrepreneurship Communications Management Sales Business Strategy Operations Project Management Business Law Business Analytics & Intelligence Human Resources Industry E-Commerce Media Real Estate Other Business
Finance & Accounting
Accounting & Bookkeeping Compliance Cryptocurrency & Blockchain Economics Finance Finance Cert & Exam Prep Financial Modeling & Analysis Investing & Trading Money Management Tools Taxes Other Finance & Accounting
IT & Software
IT Certification Network & Security Hardware Operating Systems Other IT & Software
Office Productivity
Microsoft Apple Google SAP Oracle Other Office Productivity
Personal Development
Personal Transformation Personal Productivity Leadership Career Development Parenting & Relationships Happiness Esoteric Practices Religion & Spirituality Personal Brand Building Creativity Influence Self Esteem & Confidence Stress Management Memory & Study Skills Motivation Other Personal Development
Design
Web Design Graphic Design & Illustration Design Tools User Experience Design Game Design Design Thinking 3D & Animation Fashion Design Architectural Design Interior Design Other Design
Marketing
Digital Marketing Search Engine Optimization Social Media Marketing Branding Marketing Fundamentals Marketing Analytics & Automation Public Relations Advertising Video & Mobile Marketing Content Marketing Growth Hacking Affiliate Marketing Product Marketing Other Marketing
Lifestyle
Arts & Crafts Beauty & Makeup Esoteric Practices Food & Beverage Gaming Home Improvement Pet Care & Training Travel Other Lifestyle
Photography & Video
Digital Photography Photography Portrait Photography Photography Tools Commercial Photography Video Design Other Photography & Video
Health & Fitness
Fitness General Health Sports Nutrition Yoga Mental Health Dieting Self Defense Safety & First Aid Dance Meditation Other Health & Fitness
Music
Instruments Music Production Music Fundamentals Vocal Music Techniques Music Software Other Music
Teaching & Academics
Engineering Humanities Math Science Online Education Social Science Language Teacher Training Test Prep Other Teaching & Academics
AWS Certification Microsoft Certification AWS Certified Solutions Architect - Associate AWS Certified Cloud Practitioner CompTIA A+ Cisco CCNA Amazon AWS CompTIA Security+ AWS Certified Developer - Associate
Graphic Design Photoshop Adobe Illustrator Drawing Digital Painting InDesign Character Design Canva Figure Drawing
Life Coach Training Neuro-Linguistic Programming Personal Development Mindfulness Meditation Personal Transformation Life Purpose Emotional Intelligence Neuroscience
Web Development JavaScript React CSS Angular PHP WordPress Node.Js Python
Google Flutter Android Development iOS Development Swift React Native Dart Programming Language Mobile Development Kotlin SwiftUI
Digital Marketing Google Ads (Adwords) Social Media Marketing Google Ads (AdWords) Certification Marketing Strategy Internet Marketing YouTube Marketing Email Marketing Google Analytics
SQL Microsoft Power BI Tableau Business Analysis Business Intelligence MySQL Data Analysis Data Modeling Big Data
Business Fundamentals Entrepreneurship Fundamentals Business Strategy Online Business Business Plan Startup Freelancing Blogging Home Business
Unity Game Development Fundamentals Unreal Engine C# 3D Game Development C++ 2D Game Development Unreal Engine Blueprints Blender
30-Day Money-Back Guarantee
Development Programming Languages JavaScript

The Modern Javascript Bootcamp Course (2020)

The most up-to-date JS resource online! Master Javascript by building a beautiful portfolio of projects!
Rating: 4.7 out of 54.7 (6,339 ratings)
33,857 students
Created by Colt Steele, Stephen Grider
Last updated 2/2021
English
English [Auto]
30-Day Money-Back Guarantee

What you'll learn

  • Learn everything there is to know about Javascript - from scratch!
  • Build beautiful web apps to add to your portfolio
  • Get job ready with a deep understanding of the internals of JS
  • Work with Node JS and Express
  • Create a full E-Commerce app complete with authentication
  • Automate testing your code by creating your own custom testing framework!
  • Build your own physics-based JavaScript game
  • Understand how Javascript developers work on a day-to-day basis
  • Master the latest JS features like async and arrow functions
Curated for the Udemy for Business collection

Course content

34 sections • 483 lectures • 51h 54m total length

  • Preview02:31
  • Preview06:17
  • Preview02:38
  • Customizing VSCode & Extensions
    00:13
  • Preview02:01

  • Preview03:27
  • Running Code in the JS Console
    02:57
  • Introducing Numbers
    07:31
  • NaN & Infinity
    02:02
  • Numbers Quiz
    01:52
  • Variables & Let
    07:21
  • Unary Operators
    03:18
  • Introducing Const
    02:36
  • The Legacy of Var
    02:50
  • Variables Quiz
    02:48

  • Booleans Intro
    03:25
  • Strings
    05:16
  • String Indices
    05:03
  • String Methods
    05:28
  • More String Methods
    08:22
  • Strings Quiz
    07:22
  • String Escape Characters
    03:54
  • String Template Literals
    08:39
  • Null & Undefined
    03:43
  • The Math Object & Random Numbers
    06:25
  • typeof operator
    02:21
  • parseInt & parseFloat
    02:44

  • Making Decisions in JS
    03:19
  • Comparison Operators
    05:41
  • Double Equals (==)
    03:20
  • Triple Equals (===)
    04:27
  • Running Code From a Script
    09:57
  • If Statements
    04:59
  • Else If
    03:56
  • Else
    04:14
  • Nesting Conditionals
    03:33
  • Truthy & Falsy Values
    03:56
  • Logical AND (&&)
    07:16
  • Logical OR (||)
    05:52
  • NOT Operator (!)
    07:06
  • Operator Precedence
    04:18
  • The Switch Statement
    08:04
  • Ternary Operator
    04:19

  • Creating Arrays
    07:11
  • Array Indices
    02:13
  • Modifying Arrays
    04:15
  • Push and Pop
    06:18
  • Shift and Unshift
    05:42
  • Concat
    02:58
  • Includes and IndexOf
    05:36
  • Reverse and Join
    03:24
  • Slice
    04:54
  • Splice
    05:33
  • Sorting (Part 1)
    02:49
  • Intro to Reference Types
    05:04
  • Using Const with Arrays
    05:22
  • Working with Nested Arrays
    06:04

  • Intro to Objects
    06:51
  • Creating Object Literals
    07:57
  • Accessing Object Properties
    07:40
  • Adding and Updating Properties
    03:21
  • Nested Arrays & Objects
    05:08
  • Objects and Reference Types
    02:30
  • Array/Object Equality
    06:26

  • Intro to Loops
    05:26
  • For Loops
    13:20
  • Infinite Loops!
    05:14
  • For Loops & Arrays
    11:25
  • Nested For Loops
    09:41
  • Intro to While Loops
    02:50
  • More While Loops
    07:50
  • Break Keyword
    04:18
  • For...Of Intro
    04:27
  • Comparing For and For...Of
    06:21
  • For...Of with Objects
    05:56
  • For...In Loops
    06:35

  • Our First Function!
    08:41
  • Dice Roll Function
    03:23
  • Introducing Arguments
    07:40
  • Functions With Multiple Args
    04:28
  • The Return Statement
    05:09
  • More on Return Values
    09:02
  • Function Challenge 1: passwordValidator
    13:10
  • Function Challenge 2: Average
    03:19
  • Function Challenge 3: Pangrams
    07:16
  • Function Challenge 4: Get Playing Card
    12:13

  • Function Scope
    07:01
  • Block Scope
    12:07
  • Lexical Scope
    06:36
  • Function Expressions
    05:40
  • Higher Order Functions
    07:19
  • Functions as Arguments
    07:23
  • Functions as Return Values
    13:21
  • Callbacks
    08:19
  • Hoisting
    08:10

  • Intro to Array Callback Methods
    02:17
  • forEach
    08:06
  • Map
    11:11
  • Arrow Functions Intro
    06:14
  • Arrow Functions: Implicit Returns
    09:31
  • Array.find
    06:12
  • Filter
    10:05
  • Some & Every
    06:20
  • Revisiting Sort!
    10:47
  • Reduce Intro
    08:49
  • Reduce Pt. 2
    08:55
  • Even More Reduce!
    13:10

Requirements

  • A Windows, MacOS, or Linux-based computer is required

Description

Always bet on Javascript!

For years, top recruiters in industry have hired fresh engineers based solely on their knowledge of Javascript.  If you want to get a programming job, this is the language to learn! But learning Javascript is complicated!  There's fancy syntax, weird design patterns, and a billion resources online that might be giving you wrong - or even be out of date - information.

We built this course to solve your problems.  This is the best and most up-to-date resource online for becoming a Javascript professional as quickly as possible. Every minute of this course has been created with one goal in mind: teaching you how to become a great engineer.


The Modern Javascript Bootcamp (2020) focuses on cutting through unnecessary information and giving you just the facts, plain and simple.  You won't work with outdated frameworks, learn old styles of programming, or build boring apps.  Instead, you'll only spend time writing practical code that can be used today and in the future on your own projects.  You'll learn - from very early on in the course - how to write beautiful and reusable code that you'll be proud to show to a future employer.

Two of Udemy's greatest instructors - Colt Steele and Stephen Grider - collaborated to create this course.  Between the two of us, we have taught over one million engineers how to program.  Rest assured, you will be learning from the best.  We know how challenging it can be to understand a new programming from scratch, so we designed this course to offer you a step-by-step, guaranteed approach to becoming a Javascript master. 


------ Course Structure ------

This course is divided into two parts.  The first half of the course focuses on teaching you the basic syntax of Javascript.  Colt will walk you through core topics effortlessly, imparting jewels of JS wisdom along the way.  Included in the first half of the course are many programming exercises and small projects, so you can test your new-found knowledge out.  Each of these videos can be easily referenced in the future, so you can always come back and brush up on some topic whenever needed.

The second half of the course is focused on building some amazing projects.  Stephen will show you how to build some production-ready Javascript applications, including a fully-featured E-Commerce web app!  These projects are all styled to be absolutely beautiful, visually stunning apps that you will be proud to feature on your own personal portfolio.  The main goal of these projects is to highlight design patterns, and show you the 'right' and 'wrong' ways of writing code.  By the end, you'll be confident enough to work on your own personal projects with speed and finesse.


------ What You'll Learn ------

This is a long course, with just about every fact about Javascript you could ever hope to know.  Here's a brief subset of the topics you'll cover:

  • Master the basics of the language, easily understanding variables, objects, arrays, and functions

  • Understand how to design the structure of the code you write, leading to beautiful and easy-to-read programs

  • Leverage Javascript's built-in methods to increase your productivity regardless of what libraries or frameworks you use

  • Develop practical skills around higher-order functions that you will utilize for years to come

  • Observe how the Javascript and browser work together, and how to increase the performance of JS code

  • Build awesome projects to fill your personal portfolio

  • Build command line tools from scratch using Node JS

  • Fetch and manage information from third-party API's

  • Build a fully-featured E-Commerce application from scratch - including production-grade authentication!


This is the ultimate Javascript course.  There are many resources online for learning Javascript, but this is the only one that covers everything you need to know, from 'A' to 'Z', and a couple letters after that.  Master the basics with Colt, then build awesome projects with Stephen. We've taught a million other engineers how to code, and now it is your turn!

Who this course is for:

  • Anyone looking to understand and master Javascript

Featured review

Egg McMuffin
Egg McMuffin
65 courses
8 reviews
Rating: 5.0 out of 5a year ago
Hell yes! I've bought many courses on the subject, but most were incomplete or the instructor droned on and on which makes it impossible for me to stay focused. Content is delivered at a great pace. This course is on point and leaves out all the fluff. I bet these guys never expected to receive a 5-star review from a breakfast sandwich!

Instructors

Colt Steele
Developer and Bootcamp Instructor
Colt Steele
  • 4.7 Instructor Rating
  • 306,084 Reviews
  • 944,761 Students
  • 9 Courses

Hi! I'm Colt. I'm a developer with a serious love for teaching. I've spent the last few years teaching people to program at 2 different immersive bootcamps where I've helped hundreds of people become web developers and change their lives. My graduates work at companies like Google, Salesforce, and Square.

Most recently, I led Galvanize's SF's 6 month immersive program as Lead Instructor and Curriculum Director. After graduating from my class, 94% of my students went on to receive full-time developer roles. I also worked at Udacity as a Senior Course Developer on the web development team where I got to reach thousands of students daily.

I’ve since focused my time on bringing my classroom teaching experience to an online environment. In 2016 I launched my Web Developer Bootcamp course, which has since gone on to become one of the best selling and top rated courses on Udemy. I was also voted Udemy’s Best New Instructor of 2016.

I've spent years figuring out the "formula" to teaching technical skills in a classroom environment, and I'm really excited to finally share my expertise with you. I can confidently say that my online courses are without a doubt the most comprehensive ones on the market.

Join me on this crazy adventure!

Stephen Grider
Engineering Architect
Stephen Grider
  • 4.7 Instructor Rating
  • 284,540 Reviews
  • 749,165 Students
  • 29 Courses

Stephen Grider has been building complex Javascript front ends for top corporations in the San Francisco Bay Area.  With an innate ability to simplify complex topics, Stephen has been mentoring engineers beginning their careers in software development for years, and has now expanded that experience onto Udemy, authoring the highest rated React course. He teaches on Udemy to share the knowledge he has gained with other software engineers.  Invest in yourself by learning from Stephen's published courses.

  • Udemy for Business
  • Teach on Udemy
  • Get the app
  • About us
  • Contact us
  • Careers
  • Blog
  • Help and Support
  • Affiliate
  • Terms
  • Privacy policy
  • Cookie settings
  • Sitemap
  • Featured courses
Udemy
© 2021 Udemy, Inc.