Instructional Video2:48
Curated Video

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

Higher Ed
In this video, we will dive into sorting arrays in ascending and descending order using sort() and reversing the order of elements using reverse(), which enables effective data organization and manipulation in arrays.
Instructional Video2:36
Curated Video

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

Higher Ed
In this video, we will explore various methods to modify and delete elements within an array, including changing values at specific indices, removing elements using splice(), and clearing the entire array.
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.
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 Video5:29
Curated Video

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

Higher Ed
In this video, we will delve into the world of events in JavaScript, the fundamental concepts of events, such as event types, event handlers, and event listeners. The video demonstrates how to attach event listeners to HTML elements and...
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 Video1:22
Curated Video

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

Higher Ed
In this video, we will dive into the confirm box in JavaScript, which allows us to prompt the user for confirmation. You will learn to use confirm boxes to ask the user for a yes or no response and perform actions based on their choice.
Instructional Video1:50
Curated Video

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

Higher Ed
In this video, we will discover how to use alert boxes in JavaScript to display messages to the user. You will learn to create custom alert messages and use them for various purposes in 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 Video1:36
Curated Video

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

Higher Ed
In this video, we will understand the assignment operator in JavaScript, which allows us to assign values to variables. We will explore different ways to assign values and modify variables using shorthand notation and compound assignment...
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 Video3:02
Curated Video

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

Higher Ed
In this video, we will understand how to use the "if else if" statement in JavaScript to handle multiple conditions in a structured way. We will execute specific code blocks based on the true condition, providing a clear and organized...
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: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...