Course Overview
This course provides a comprehensive overview of Design Patterns in JavaScript from a practical perspective. This course in particular covers patterns with the use of:
The latest versions of the JavaScript programming language
Use of modern programming libraries and frameworks
Use of modern developer tools such as JetBrains WebStorm
Discussions of pattern variations and alternative approaches
This course provides an overview of all the Gang of Four (GoF) design patterns as outlined in their seminal book, together with modern–day variations, adjustments, discussions of intrinsic use of patterns in the language.
What are Design Patterns?
Design Patterns are reusable solutions to common programming problems. They were popularized with the 1994 book Design Patterns: Elements of Reusable Object–Oriented Software by Erich Gamma, John Vlissides, Ralph Johnson and Richard Helm (who are commonly known as a Gang of Four, hence the GoF acronym).
The original book GoF book used C++ and Smalltalk for its examples, but, since then, design patterns have been adapted to every programming language imaginable: C#, Java, Swift, Python and now — JavaScript!
The appeal of design patterns is immortal: we see them in libraries, some of them are intrinsic in programming languages, and you probably use them on a daily basis even if you don’t realize they are there.
Instructor Details
Courses : 14
Specification: Design Patterns in JavaScript
|
9 reviews for Design Patterns in JavaScript
Add a review Cancel reply
This site uses Akismet to reduce spam. Learn how your comment data is processed.
Price | $16.99 |
---|---|
Provider | |
Duration | 10 hours |
Year | 2021 |
Level | Intermediate |
Language | English |
Certificate | Yes |
Quizzes | Yes |
$94.99 $16.99
Dan –
Some of the explanatory videos from the Python course seem to have been included into the JS course by mistake.
Aditya Gary –
good tips
Sylvain P –
example for current step is not very useful
Kaspars –
Amazing content, but the code font is too large for the video in some lessons, I would like to see more on screen.
Kshirodra Meher –
lot of complicated example and more theoretical. Also the font size is too big and am not able to see the code
Ivan Grimes –
This course definitely should use Typescript.
Anca Nagy –
So far design patterns are explained ok even if he’s using the esoteric teacher type class and instance names that you’ll never use in real life coding. However, there are no clear examples of where you would use one design pattern over another or what are the pros and cons to each one.
Selino –
The video seems to be running at 1.5x speed. It’s difficult for me to follow as it seems to wander into the weeds with the examples. It would help me to explain the concept and then have another video exemplify that concept to reinforce the understanding. Each video seems to try to explain the concept as he’s coding the example. So I’m not sure if I’m supposed to be learning his approach to building out software or the design pattern. I’m forced to try and learn both at breakneck speeds. It’s not a class where a teacher is guiding a student toward an understanding. It’s more of a shotgun of information that expects you to know most of what the instructor knows in order to decipher the lesson.
Rohit Rane –
Kudos! The Tutor has great language agnostic knowledge of Design Patterns but a few of challenges I am facing in learning here are : 1. Visual learning could have been made better with Diagrams instead of diving directly into code. 2. The Tutor seems to be from non Javascript Background. So the examples are esoteric and not associable for everyday React Developer or Angular developer. They look like Python Example painfully transposed to Javascript world. 3. Particularly when it came to Prototype Design Pattern, the example & Syntax was painful to bear. Could have instead been implemented using : https://developer.mozilla.org/en US/docs/Learn/JavaScript/Objects/Object prototypes https://scotch.io/tutorials/demystifying es6 classes and prototypal inheritance