Instructional Video1:54
Curated Video

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

Higher Ed
In this video, we will explore the include() method used to check whether an array includes a certain value, returning true or false based on the result, which provides a convenient way to determine if an array contains a specific...
Instructional Video2:27
Curated Video

The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - The toString(), valueOf(), and fill() Methods

Higher Ed
In this video, we will understand different functionalities for working with arrays. The function toString() converts an array to a string representation, valueOf() returns the array itself, and fill() allows for filling array elements...
Instructional Video1:55
Curated Video

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

Higher Ed
In this video, you will learn about iterating over each element of an array and executing a provided function for each element, which simplifies the process of performing operations on each element of an array without the need for...
Instructional Video2:36
Curated Video

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

Higher Ed
In this video, we will discover methods used to search for the index of a specified element within an array. The function indexOf() returns the first occurrence of the element, while lastIndexOf() returns the last occurrence.
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 Video2:41
Curated Video

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

Higher Ed
In this video, you will learn to combine multiple arrays into a single array using concat(). Additionally, you will learn about join(), which converts an array into a string by concatenating its elements with a specified separator.
Instructional Video2:07
Curated Video

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

Higher Ed
This video showcases how to add and remove elements at the beginning of an array using unshift() and shift() respectively. We will explore these methods, which allow for efficient manipulation of array elements.
Instructional Video2:26
Curated Video

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

Higher Ed
In this video, you will learn how to add and remove elements at the end of an array using push() and pop() respectively. We will explore these methods, which are useful for managing the dynamic size of an array.
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...