JavaScript Essential Training vs Complete Intro to Containers (feat. Docker)
Same Bayesian formula, same rubric — so the difference in scores reflects the difference in the courses, not the difference in how we evaluated them.
LinkedIn Learning · Web Development
JavaScript Essential Training
Frontend Masters · Web Development
Complete Intro to Containers (feat. Docker)
Per-criterion
The 2021 redesign covers variables, data types, objects, arrays, functions, loops, conditionals, DOM selection and manipulation, event listeners, and closures across roughly 6 hours 14 minutes of video. Reviewers praise the modern ES6+ syntax used throughout and the logical, progressive structure. The course's "objects first" ordering — starting with objects and methods before covering data types and functions — is polarising: blog reviewers like Nick Simson praise it as an accurate reflection of how modern learners encounter JavaScript through frameworks, while some beginners on the LinkedIn Learning platform found starting with complex concepts challenging. Multiple sources note that 11 quizzes and CoderPad code challenges provide genuine interactivity that many comparable beginner courses lack.
Morten Rand-Hendriksen is described consistently across review sources as clear, concise, and methodical. The topfreereviews.com team analysis credits him with giving "clear and concise instructions so that learners could follow the course without troubleshooting." The nicksimson.com blog review notes his deliberate pedagogical philosophy of mirroring how modern JavaScript learners actually first encounter the language in the wild. No reviewers described him as dry or hard to follow; the occasional criticism targets the course's depth or the complexity of the chosen teaching sequence, not the instructor's delivery itself.
Access to this course requires a LinkedIn Learning subscription ($39.99/month or $239.88/year), which unlocks the entire 21,000-course library. Multiple independent platform reviews note that the subscription price is reasonable if you are actively consuming multiple courses, but feels expensive for a single course. Critics on BitDegree and Career Sidekick note that some technically equivalent content exists on free platforms. For learners whose employer or university provides LinkedIn Learning access at no personal cost — a common arrangement — the value equation shifts strongly in favour of the course. The certificate, while not accredited, is displayable on a LinkedIn profile and is noted by several reviewers as a practical career visibility benefit.
The course includes mini-projects and interactive code challenges powered by CoderPad with real-time feedback, which reviewers describe as more engaging than passive video learning. However, multiple platform-level reviews of LinkedIn Learning note that technical courses "lack in-depth projects" and that the practice elements "do not go far enough for those seeking comprehensive understanding." One LinkedIn Learning reviewer noted the course is "a very VERY dense course" but the practice elements are limited relative to the volume of concepts introduced. The course does not include a capstone or portfolio-ready project, which distinguishes it from longer Udemy alternatives.
The course covers genuinely modern JavaScript — ES6+ syntax, DOM APIs, event-driven programming, and the underlying concepts used in frameworks like React and Vue. Nick Simson's blog review specifically notes that Morten's object-first teaching sequence acknowledges that modern learners encounter JavaScript through frameworks before mastering fundamentals, making the course sequencing more industry-realistic than traditional textbook approaches. The limitation is scope: at 6 hours, the course provides a strong foundation but stops well short of async JavaScript, Node.js, testing, TypeScript, or the deployment patterns required for professional work. Most reviewers position it as a starting point requiring significant follow-up rather than a job-ready course.
The course stands apart from typical Docker tutorials by opening with a module called "Crafting Containers by Hand," where students manually implement chroot, Linux namespaces, and cgroups before Docker is introduced. This first-principles approach is the most-cited reason learners say the course made containers finally click, rather than just memorising Dockerfile syntax. The curriculum then progresses through Docker images, Dockerfiles, Node.js containerisation, layer caching strategies, Alpine Linux for smaller images, multi-stage builds, distroless containers, static asset optimisation, bind mounts, volumes, dev containers, Docker networking, Docker Compose, and a practical introduction to Kubernetes and Kompose. The open-source companion notes at btholt.github.io/complete-intro-to-containers are freely available under a Creative Commons licence, which allows learners to revisit content without re-watching videos. The course does cover the original version's content well; a v2 update on Frontend Masters addresses cgroups v2 changes and dependency freshness, so learners should verify which version they are accessing. Minor critiques include the relative brevity of the Kubernetes module, which is treated as a brief orientation rather than a deep dive, and the Node.js-heavy examples, which assume JavaScript familiarity even though the container concepts themselves are language-agnostic.
Brian Holt brings over a decade of engineering and product management experience across Netflix, LinkedIn, Reddit, Microsoft (VS Code team), Stripe, Snowflake/Streamlit, and Databricks, giving him genuine production-grade context for every concept he teaches. On Frontend Masters, he has authored more than a dozen "Complete Intro" courses, making him one of the platform's highest-volume and most-reviewed instructors. Learner feedback consistently uses the same descriptors across multiple courses and years: "excellent," "clear," "fun," "great teacher." His containers course specifically is praised for making systems-level Linux concepts approachable to web developers who have never opened a man page. Holt openly acknowledges when a topic is dense — he describes the course as "pretty dense with a lot of systems-level stuff thrown at you in a short time" — but frames each piece incrementally so the cognitive load stays manageable. His tendency to explain the why behind each tool (why cgroups exist, why Alpine saves hundreds of megabytes, why distroless containers matter in CI/CD pipelines) is cited by multiple reviewers as what separates this from documentation-style instruction. The only consistent criticism is that his pace can feel quick for learners coming from a pure frontend background with no prior Linux exposure, and those learners are advised to take his Complete Intro to Linux and the Command-Line first.
Access to the course requires a Frontend Masters subscription, priced at $39 per month or $390 per year (effectively $32.50 per month). The subscription model is the most common source of neutral and negative sentiment across the 38 opinions analysed, as it compares unfavourably to a one-time Udemy purchase for learners who only want a single course. The value calculation improves significantly if the learner is already subscribed for other Frontend Masters content or plans to take additional courses in the same month. Within that framing, reviewers consistently describe the subscription as worthwhile given the breadth and depth of the catalog. The course notes for Complete Intro to Containers are freely published on GitHub and btholt.github.io under a Creative Commons licence, which Holt explicitly designed so that financial barriers do not block access to the curriculum. Learners on a tight budget can follow the full written curriculum for free, losing only the video walkthroughs. Several blog posts note that this free-access policy, combined with the open-source code examples, makes the course more transparent than most paid offerings at a similar price point.
Rather than a single end-to-end application, the course uses a progression of hands-on exercises that directly reinforce each module. Students begin by creating a containerised environment entirely from Linux primitives — chroot, unshare, cgroups — using command-line tools directly in the terminal. Subsequent exercises containerise a real Node.js application, iterating through progressively optimised Dockerfiles: first a basic image, then one with explicit layer ordering for faster rebuilds, then an Alpine-based version that is roughly 80% smaller than the Debian default, then a multi-stage build, then a distroless variant. The Docker Compose module adds a MongoDB service alongside the Node app, creating a practical multi-container scenario that mirrors real development setups. Pre-built Docker images are provided so that slow internet connections do not block workshop progress. Reviewers note the exercises feel production-relevant rather than toy examples, and the GitHub repository (945 stars, 181 forks) demonstrates ongoing community use. The Kubernetes exercises are more abbreviated — primarily using Kompose to convert a Compose file — and learners who want deep Kubernetes practice will need a dedicated course afterwards.
Container knowledge has become a baseline expectation for full-stack and backend developers at most organisations that deploy to the cloud, and this course maps directly to the most common production patterns: writing Dockerfiles for Node.js services, reducing image sizes for faster CI/CD pipelines, using multi-stage builds to separate build and runtime environments, structuring multi-service applications with Docker Compose, and understanding how Kubernetes orchestrates containers at scale. The dev containers module is particularly relevant to modern team workflows, covering how to use containers to create reproducible development environments that eliminate "works on my machine" problems. Holt draws on his experience across Netflix, Reddit, and cloud infrastructure roles at Stripe and Databricks to ground each concept in how it is actually used in production. Multiple blog post reviewers describe going directly from the course to containerising services at work. The Kubernetes coverage is acknowledged as introductory rather than comprehensive, and learners moving into DevOps or platform engineering roles will need further study. For web developers adding Docker competency to an existing JavaScript skill set, however, this is the most practically oriented course in the Frontend Masters catalog.
Scoring methodology applies identically to every course on the site — see the formula.