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 Video6:21
Curated Video

Modern JavaScript from the Beginning - Second Edition - Maps

Higher Ed
Maps are another new data structure introduced in ES6 that allow us to store key-value pairs. In this video, you will learn how maps work, how to create them, and how to perform basic map operations. This clip is from the chapter...
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 Video9:16
Curated Video

Modern JavaScript from the Beginning - Second Edition - Iterators

Higher Ed
Iterators are objects that provide a way to iterate over collections of data. In this video, you will learn how iterators work and how to create custom iterators using the Symbol.iterator method. This clip is from the chapter "Iterators,...
Instructional Video7:31
Curated Video

Modern JavaScript from the Beginning - Second Edition - Sealing and Freezing Objects

Higher Ed
In this video, you will learn about how to use the "Object.seal()" and "Object.freeze()" methods to make objects read-only and prevent changes to their properties. This clip is from the chapter "OOP - Classes, Getters, Setters, and...
Instructional Video9:18
Curated Video

Modern JavaScript from the Beginning - Second Edition - Property Flags and Descriptors

Higher Ed
In this video, you will learn about the different property flags and descriptors in JavaScript, including how to use the "Object.getOwnPropertyDescriptors()" method to inspect object properties. This clip is from the chapter "OOP -...
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 Video9:53
Curated Video

Modern JavaScript from the Beginning - Second Edition - Literals Versus Built-In Constructors

Higher Ed
In this video, we will discuss the difference between object literals and built-in constructor functions, such as String(), Number(), and Boolean(). We will also explain why it is generally better to use literals instead of constructors....
Instructional Video4:12
Curated Video

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

Higher Ed
This video delves into various techniques for conditionally rendering components based on specific conditions or user interactions, if statements, ternary operators, and logical operators for implementing conditional rendering effectively.
Instructional Video8:00
Curated Video

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

Higher Ed
In this video, we will discover the classList property and its associated methods, which provide a convenient way to manipulate CSS classes on elements, how to add, remove, toggle, and check for the presence of specific classes using...
Instructional Video3:41
Curated Video

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

Higher Ed
This video dives into the concept of event capturing in JavaScript. You will learn about the useCapture parameter in the addEventListener method and how it affects the order in which event handlers are triggered during event propagation....
Instructional Video8:06
Curated Video

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

Higher Ed
In this video, you will learn about the various Number methods available in JavaScript, which include isNaN, isFinite, toExponential, and toPrecision, among others. We will understand how to use these methods to perform operations on...
Instructional Video5:25
Curated Video

The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - String Methods - Part 1

Higher Ed
In this video, we will explore various methods available for manipulating and working with strings in JavaScript. You will learn about common string methods such as length, toUpperCase, toLowerCase, substring, indexOf, and more.
Instructional Video1:38
Curated Video

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

Higher Ed
In this video, you will learn about the filter() method for creating a new array with elements that pass a provided condition and filters out elements that don't meet the condition, resulting in a new array containing only the desired...
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 Video2:01
Curated Video

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

Higher Ed
In this video, we will discuss how to check whether a value is an array using the isArray() function, which is useful for validating whether a variable contains an array before performing array-specific operations.
Instructional Video4:32
Curated Video

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

Higher Ed
In this video, we will understand the while loop, which executes a block of code repeatedly as long as a specified condition is true, and topics such as loop initialization, condition evaluation, and loop termination.
Instructional Video4:19
Curated Video

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

Higher Ed
In this video, we will explore the comparison operators in JavaScript, such as equal to, not equal to, greater than, less than. You will learn to compare values and evaluate conditions based on the results of these comparisons.
Instructional Video2:34
Curated Video

The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Condition Ternary Statement

Higher Ed
In this video, we will discover the concise and compact syntax of the ternary statement in JavaScript. We will use this shorthand form to write conditional expressions with a quick and easy-to-read format.
Instructional Video2:28
Curated Video

The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - If Else Statement

Higher Ed
In this video, we will explore the "if else" statement in JavaScript, which allows to provide alternative code to be executed when the initial condition is false. We will expand our control over program execution by defining different...
Instructional Video4:32
Curated Video

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

Higher Ed
This video explains closures in Rust. This clip is from the chapter "Intermediate to Advanced Videos in Rust" of the series "Rust Programming 2023 - A Comprehensive Course for Beginners".null
Instructional Video5:41
Curated Video

Rust Programming 2023 - A Comprehensive Course for Beginners - Solution - Write Error Handling for a Program in Rust

Higher Ed
This is a solution video on writing error handling for a program in Rust. This clip is from the chapter "Intermediate to Advanced Videos in Rust" of the series "Rust Programming 2023 - A Comprehensive Course for Beginners".null
Instructional Video13:53
Curated Video

JavaScript Mastery from Zero to Hero - Prepare for Coding Interviews - Solution - Check whether a String Is a Palindrome

Higher Ed
In this video, we will discuss the solution to the interview question to check whether a string is a palindrome or not from the previous video. This clip is from the chapter "Algorithms and Data Structures - Intermediate to Advanced" of...