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:43
Curated Video

The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Function with Return

Higher Ed
In this video, we will discover the concept of return statements in JavaScript functions. You will learn to use return statements to return values from functions, making them more versatile and allowing us to use the returned value in...
Instructional Video1:53
Curated Video

The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Functions with Parameters

Higher Ed
In this video, we will expand our understanding of functions in JavaScript by exploring how to define and use functions with parameters. You will learn to pass values to functions and use them within the function's code.
Instructional Video3:23
Curated Video

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

Higher Ed
In this video, you will learn the basics of functions in JavaScript, including how to define and call functions. We will understand the role of functions in organizing and reusing code and learn to create functions to perform specific...
Instructional Video2:14
Curated Video

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

Higher Ed
In this video, we will explore the prompt box in JavaScript, which enables us to prompt the user for input. You will learn to create input dialogs using prompt boxes and use the user's input in our JavaScript code.
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 Video5:02
Curated Video

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

Higher Ed
In this video, we will dive into the arithmetic operators in JavaScript, including addition, subtraction, multiplication, and division. You will learn to perform basic mathematical operations and manipulate numerical values in code.
Instructional Video4:34
Curated Video

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

Higher Ed
In this video, we will explore the various data types in JavaScript, such as numbers, strings, Booleans, arrays, objects. We will understand how to work with these data types effectively, manipulate their values, and perform operations...
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:48
Curated Video

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

Higher Ed
In this video, you will learn to use the "switch" statement in JavaScript to simplify the handling of multiple conditions. We will use this control structure to execute different blocks of code based on the value of a variable or an...
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: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:44
Curated Video

The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Advanced console.log

Higher Ed
In this video, we will explore the advanced features and functionalities of the "console.log" method in JavaScript, how to format console output, use placeholders and substitutions, and log multiple values in a single statement.
Instructional Video2:27
Curated Video

The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - How to Use HTML Tags in JavaScript

Higher Ed
In this video, you will learn to leverage the power of JavaScript to manipulate and interact with HTML elements and how to access HTML tags using JavaScript and modify their content, attributes, and styles dynamically.
Instructional Video1:46
Curated Video

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

Higher Ed
In this video, we will explore the various ways to implement JavaScript in web projects and how JavaScript can be embedded directly within HTML code or referenced externally in separate JavaScript files.
Instructional Video4:30
Curated Video

The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Syntax of JavaScript and Overview

Higher Ed
In this video, we will dive into the syntax of JavaScript and gain an overview of its key components. You will learn about variables, data types, operators, control structures, functions. We will understand how JavaScript code is...
Instructional Video4:05
Curated Video

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

Higher Ed
In this video, you will learn how to use media queries in CSS3 to apply specific styles based on the characteristics of the device or viewport. We will understand how to create responsive designs that adapt to different screen sizes,...
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:15
Curated Video

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

Higher Ed
In this video, we will uncover the magic of CSS3 pseudo-elements and learn to create dynamic and engaging content. We will discover pseudo-elements such as ::before and ::after, and understand how they can be used to insert content...
Instructional Video4:39
Curated Video

The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Pseudo-Classes part 2

Higher Ed
In this video, we will continue exploration of CSS3 pseudo-classes and dive deeper into the world of advanced styling. You will learn about pseudo-classes such as :first-child, :nth-child, and :last-child, and understand how they can be...
Instructional Video9:55
Curated Video

The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Pseudo-Classes Part 1

Higher Ed
In this video, we will discover the power of pseudo-classes in CSS3 and learn to target elements based on specific states or interactions. We will explore commonly used pseudo-classes such as :hover, :active, and :focus, and understand...
Instructional Video1:58
Curated Video

The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - DOM Model in CSS

Higher Ed
In this video, we will gain a deeper understanding of the Document Object Model (DOM) and how it relates to CSS3. You will learn about the structure of the DOM, how elements are represented, and how CSS selectors interact with the DOM to...
Instructional Video2:16
Curated Video

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

Higher Ed
In this video, we will delve into CSS3's float property and learn to create floating elements that can be positioned to the left or right of their containing elements. We will understand the intricacies of the float property and its...
Instructional Video2:47
Curated Video

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

Higher Ed
In this video, we will master the art of handling overflow in CSS3 and learn to control the behavior of content when it exceeds the dimensions of its container. We will discover how to handle overflow with properties such as overflow-x...