Instructional Video2:36
Curated Video

Rust Programming 2023 - A Comprehensive Course for Beginners - What Are Operators in Rust

Higher Ed
In this video, you will look at operators in Rust. This clip is from the chapter "Beginner Lessons in Rust" of the series "Rust Programming 2023 - A Comprehensive Course for Beginners".This section focuses on the beginner lessons in Rust.
Instructional Video2:11
Curated Video

Rust Programming 2023 - A Comprehensive Course for Beginners - Print line Println Exercise in Rust

Higher Ed
In this video, you will be presented with a series of coding challenges designed to test your knowledge of the print! and println! macros. This clip is from the chapter "Beginner Lessons in Rust" of the series "Rust Programming 2023 - A...
Instructional Video15:51
Curated Video

Modern JavaScript from the Beginning - Second Edition - Has Duplicate IDs - jsdom

Higher Ed
In this video, we will write a unit test for a function that checks whether a webpage has any duplicate IDs. We will use jsdom to simulate a webpage and test our function. This clip is from the chapter "Unit Testing Algorithms" of the...
Instructional Video17:59
Curated Video

Modern JavaScript from the Beginning - Second Edition - Get Elements by Tag - jsdom

Higher Ed
In this video, we will write a unit test for a function that gets all elements with a particular tag name in a web page. We will use jsdom, a JavaScript implementation of the DOM, to simulate a web page and test our function. This clip...
Instructional Video12:02
Curated Video

Modern JavaScript from the Beginning - Second Edition - Anagram Algorithm

Higher Ed
In this video, we will write a unit test for an anagram checking algorithm. We will use Jest to test our algorithm and ensure that it correctly identifies anagrams. This clip is from the chapter "Unit Testing Algorithms" of the series...
Instructional Video6:17
Curated Video

Modern JavaScript from the Beginning - Second Edition - Array Chunking

Higher Ed
In this video, we will write a unit test for an array chunking algorithm. We will use Jest to test our algorithm and ensure that it correctly splits an array into smaller chunks. This clip is from the chapter "Unit Testing Algorithms" of...
Instructional Video10:03
Curated Video

Modern JavaScript from the Beginning - Second Edition - Palindrome Algorithm

Higher Ed
In this video, we will write a unit test for a palindrome checking algorithm. We will use Jest to test our algorithm and ensure that it correctly identifies palindromes. This clip is from the chapter "Unit Testing Algorithms" of the...
Instructional Video9:55
Curated Video

Modern JavaScript from the Beginning - Second Edition - Reverse String Algorithm

Higher Ed
In this video, we will write a unit test for a simple string reversal algorithm. We will use Jest to test our algorithm and make sure it works correctly. This clip is from the chapter "Unit Testing Algorithms" of the series "Modern...
Instructional Video10:57
Curated Video

Modern JavaScript from the Beginning - Second Edition - Grouping Tests Together

Higher Ed
In this video, you will learn how to group tests together using Jest. We will organize our tests into test suites and describe blocks, making our test code more readable and easier to maintain. This clip is from the chapter "Unit Testing...
Instructional Video3:28
Curated Video

Modern JavaScript from the Beginning - Second Edition - What Is Unit Testing?

Higher Ed
In this video, we will explain what unit testing is and why it's important. We will talk about the benefits of unit testing, the difference between unit testing and other types of testing, and the principles of good unit testing. This...
Instructional Video8:49
Curated Video

Modern JavaScript from the Beginning - Second Edition - Queues

Higher Ed
Queues are a data structure that allows us to store and retrieve data in a first-in, first-out (FIFO) manner. In this video, you will learn how queues work and how to create them. This clip is from the chapter "Iterators, Generators, and...
Instructional Video5:19
Curated Video

Modern JavaScript from the Beginning - Second Edition - Sets

Higher Ed
Sets are a new data structure introduced in ES6 that allow us to store unique values. In this video, you will learn how sets work, how to create them, and how to perform basic set operations. This clip is from the chapter "Iterators,...
Instructional Video10:29
Curated Video

Modern JavaScript from the Beginning - Second Edition - Symbols

Higher Ed
Symbols are a new primitive type in JavaScript, introduced in ES6. In this video, you will learn what symbols are and how they can be used to create unique identifiers for objects. This clip is from the chapter "Iterators, Generators,...
Instructional Video5:52
Curated Video

Modern JavaScript from the Beginning - Second Edition - Storage Class and Calorie Limit Persist

Higher Ed
In this video, we will create a Storage class that handles all the interactions with local storage in the Tracalorie app. We will move all the local storage-related code from the App class to the Storage class. We will also update the...
Instructional Video5:22
Curated Video

Modern JavaScript from the Beginning - Second Edition - Set Calorie Limit

Higher Ed
In this video, we will add the ability to set a calorie limit in the Tracalorie app. We will also add an input field that allows the user to set the limit and update the progress bar and calorie alert accordingly. We will persist the...
Instructional Video4:37
Curated Video

Modern JavaScript from the Beginning - Second Edition - Refactor to Single _newItem Method

Higher Ed
This video focuses on refactoring the Tracalorie App project to use a single _newItem method for creating new meal and workout objects. The video covers how to use JavaScript classes and the 'this' keyword to create a more efficient and...
Instructional Video6:34
Curated Video

Modern JavaScript from the Beginning - Second Edition - Class Inheritance

Higher Ed
In this video, you will learn about class inheritance in JavaScript, including how to use the "extends" keyword to create subclasses, how to override superclass methods in subclasses, and how to call superclass methods from within...
Instructional Video7:50
Curated Video

Modern JavaScript from the Beginning - Second Edition - OOP Game Challenge

Higher Ed
In this video, we will apply our knowledge of OOP to create a simple game using constructor functions and prototypes. We will demonstrate how to create game objects, add methods to their prototypes, and share properties and methods...
Instructional Video4:43
Curated Video

Modern JavaScript from the Beginning - Second Edition - Adding Methods to the Prototype

Higher Ed
In this video, we will demonstrate how to add methods to the prototype of an object. We will also discuss the benefits of using prototypes to share methods between objects. This clip is from the chapter "OOP - Constructors and...
Instructional Video2:13
Curated Video

The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Find and findIndex Methods

Higher Ed
In this video, we will explore the find() and findIndex() methods used to search for a specific element in an array, where the find() returns the first element that matches a condition, while findIndex() returns the index of the first...
Instructional Video3:24
Curated Video

The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Some and Every Methods

Higher Ed
In this video, we will understand the some() and every() methods used to perform conditional checks on array elements, where some() checks whether at least one element satisfies a condition, while every() verifies if all elements meet...
Instructional Video6:25
Curated Video

The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Arrays

Higher Ed
In this video, you will learn about arrays in JavaScript, covering how to create and access arrays, as well as perform basic operations such as adding and removing elements.
Instructional Video3:29
Curated Video

The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Nested Loop

Higher Ed
In this video, we will understand the concept of nesting loops, where one loop is placed inside another and how nested loops can be used to iterate over multiple levels of data structures or perform repetitive tasks with varying complexity.
Instructional Video2:59
Curated Video

The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - For Loop

Higher Ed
In this video, we will explore the for loop, a commonly used loop structure that allows for more control over the loop execution and the initialization, condition, and iteration expression of the for loop, along with examples.