Instructional Video3:17
Curated Video

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

Higher Ed
In this video, we will explore the do-while loop, which is similar to the while loop but guarantees that the code block is executed at least once before checking the condition; it demonstrates the syntax and usage of the do-while loop in...
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 Video3:39
Curated Video

The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Break and Continue Statement

Higher Ed
In this video, we will gain control over loops with the "break" and "continue" statements in JavaScript. We will use "break" to exit a loop prematurely, and "continue" to skip the current iteration and move to the next one, enhancing the...
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 Video2:05
Curated Video

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

Higher Ed
In this video, you will learn to use the "if" statement in JavaScript to perform conditional execution based on a given condition. We will control the flow of our program by executing different blocks of code depending on whether the...
Instructional Video2:40
Curated Video

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

Higher Ed
In this video, we will master the box shadow property in CSS3 to add depth and shadow effects to elements. You will learn to control the size, spread, and color of the shadow to create visually appealing designs with depth and dimension.
Instructional Video4:18
Curated Video

The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Additional Input Attributes (Min, Max, Multiple, and Placeholder)

Higher Ed
In this video, we will explore additional input attributes to add validation and improve user experience. You will learn to set minimum and maximum values, allow multiple selections, and provide placeholder text.
Instructional Video6:32
Curated Video

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

Higher Ed
This video talks about smart pointers 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 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 Video8:59
Curated Video

Aging Differently: Exploring Gender Variations in Skin, Hair, and Weight

6th - Higher Ed
Dive into the fascinating differences in how men and women age, with a close look at skin elasticity, hair loss patterns, and weight distribution changes over the years. Discover the science behind why these changes occur and practical...
Instructional Video18:29
Curated Video

JavaScript Mastery from Zero to Hero - Prepare for Coding Interviews - LeetCode Example Solution Steps - Trapping Rainwater

Higher Ed
In this video, we will discuss the possible steps to resolve this interview question on trapping rainwater. You will get an idea as to what action items one needs to follow to solve this complex problem. This clip is from the chapter...
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...
Instructional Video13:18
Curated Video

JavaScript Mastery from Zero to Hero - Prepare for Coding Interviews - Solution - How to Generate Missing Letters Between Characters in JavaScript

Higher Ed
In this video, we will discuss the solution to the exercise on how to generate missing letters between characters in JavaScript. This clip is from the chapter "Algorithms and Data Structures - Intermediate to Advanced" of the series...
Instructional Video8:23
Curated Video

JavaScript Mastery from Zero to Hero - Prepare for Coding Interviews - How to Debug and Problem-Solve Step-by-Step - Iterative Optimization Anagrams

Higher Ed
Debugging and problem-solving are crucial skills for any programmer. It is common to encounter issues while writing code, especially when working with complex problems. In this video, we will go through the process of debugging and...
Instructional Video10:41
Curated Video

JavaScript Mastery from Zero to Hero - Prepare for Coding Interviews - Solution I - Anagrams Problem in JavaScript

Higher Ed
In this video, we will discuss the solution to the exercise on the anagrams problem in JavaScript from the previous video. This clip is from the chapter "Algorithms - Basics and Fundamentals to Intermediate" of the series "JavaScript...
Instructional Video8:54
Curated Video

JavaScript Mastery from Zero to Hero - Prepare for Coding Interviews - Solution - Make Multiple Copies of an Array in JavaScript

Higher Ed
In this video, we will discuss the solution to the exercise on making multiple copies of an array in JavaScript from the previous video. This clip is from the chapter "Data Structures - From Zero to Intermediate" of the series...
Instructional Video3:35
Curated Video

JavaScript Mastery from Zero to Hero - Prepare for Coding Interviews - Solution II - Sort Out Facebook Groups by Location

Higher Ed
In this video, we will continue to discuss the solution to the exercise on sorting out Facebook groups by location. This clip is from the chapter "Algorithms and Data Structures - Intermediate to Advanced" of the series "JavaScript...
Instructional Video3:36
Curated Video

JavaScript Mastery from Zero to Hero - Prepare for Coding Interviews - Solution II - Build an Array Calculator

Higher Ed
In this video, we will discuss the solution to the exercise on building an array calculator from the previous video. Here, you will complete the second and final phase of building the array calculator. This clip is from the chapter...
Instructional Video2:57
Curated Video

JavaScript Mastery from Zero to Hero - Prepare for Coding Interviews - Exercise - Build an Array Calculator

Higher Ed
This is an exercise video where you will be building an array calculator. This clip is from the chapter "Algorithms and Data Structures - Intermediate to Advanced" of the series "JavaScript Mastery from Zero to Hero - Prepare for Coding...
Instructional Video6:12
Curated Video

JavaScript Mastery from Zero to Hero - Prepare for Coding Interviews - Interview Solution I - Sort and Order Numbers into an Array with JavaScript

Higher Ed
In this video, we will walk through a solution to a common interview question that involves sorting and ordering numbers into an array using JavaScript. We will start by reviewing the problem statement and discussing different strategies...
Instructional Video5:26
Curated Video

JavaScript Mastery from Zero to Hero - Prepare for Coding Interviews - Solution I - How to Find the Longest Word in a String

Higher Ed
In this video, we will discuss the solution to the exercise on how to find the longest word in a string from the previous video. This clip is from the chapter "Algorithms - Basics and Fundamentals to Intermediate" of the series...