Instructional Video4:03
Curated Video

JavaScript Mastery from Zero to Hero - Prepare for Coding Interviews - What Is the IndexOf Method in JavaScript

Higher Ed
In JavaScript, the indexOf() method is used to search for an element in an array and returns the index of the first occurrence of the element. This method takes an argument, which is the element that you want to find in the array. This...
Instructional Video3:45
Curated Video

JavaScript Mastery from Zero to Hero - Prepare for Coding Interviews - Make Multiple Copies of an Array with the Spread Operator

Higher Ed
In this video, you will learn how to make multiple copies of an array using the spread operator in JavaScript. This clip is from the chapter "Data Structures - From Zero to Intermediate" of the series "JavaScript Mastery from Zero to...
Instructional Video5:33
Curated Video

JavaScript Mastery from Zero to Hero - Prepare for Coding Interviews - How to Copy an Array with the Spread Operator in JavaScript

Higher Ed
In this video, you will learn about the spread operator in JavaScript and how it can be used to copy an array. The spread operator is a new addition to JavaScript that allows you to spread out the elements of an array or object in places...
Instructional Video4:29
Curated Video

JavaScript Mastery from Zero to Hero - Prepare for Coding Interviews - Solution - Update Cryptocurrency Profile Data

Higher Ed
In this video, we will discuss the solution to the exercise on updating cryptocurrency profile data from the previous video. This clip is from the chapter "Data Structures - From Zero to Intermediate" of the series "JavaScript Mastery...
Instructional Video2:58
Curated Video

JavaScript Mastery from Zero to Hero - Prepare for Coding Interviews - Exercise - Update Cryptocurrency Profile Data

Higher Ed
This is an exercise video where you will be updating cryptocurrency profile data. This clip is from the chapter "Data Structures - From Zero to Intermediate" of the series "JavaScript Mastery from Zero to Hero - Prepare for Coding...
Instructional Video8:40
Curated Video

JavaScript Mastery from Zero to Hero - Prepare for Coding Interviews - How to Clone Arrays with Slice in JavaScript

Higher Ed
In JavaScript, you can clone an array using the slice() method. Cloning an array means creating a new array with the same values as an existing array, but the two arrays are completely independent of each other. This video will...
Instructional Video3:35
Curated Video

JavaScript Mastery from Zero to Hero - Prepare for Coding Interviews - Solution - Update New User Database with Splice

Higher Ed
In this video, we will discuss the solution to the exercise on updating the new user database with splice from the previous video. This clip is from the chapter "Data Structures - From Zero to Intermediate" of the series "JavaScript...
Instructional Video1:54
Curated Video

JavaScript Mastery from Zero to Hero - Prepare for Coding Interviews - Exercise - Update New User Database with Splice

Higher Ed
This is an exercise video where you will be updating a new user database with splice. This clip is from the chapter "Data Structures - From Zero to Intermediate" of the series "JavaScript Mastery from Zero to Hero - Prepare for Coding...
Instructional Video8:02
Curated Video

JavaScript Mastery from Zero to Hero - Prepare for Coding Interviews - Adding to Arrays with Splice in JavaScript

Higher Ed
In JavaScript, you can add elements to an array using the splice() method. This method allows you to add one or more elements to an array at a specified index. In this video, you will learn how to use the splice() method to add elements...
Instructional Video8:30
Curated Video

JavaScript Mastery from Zero to Hero - Prepare for Coding Interviews - Bonus Solution - Use the Splice Method to Decode the Puzzle

Higher Ed
In this video, we will discuss a bonus solution to the exercise on using the splice method to decode the puzzle. This clip is from the chapter "Data Structures - From Zero to Intermediate" of the series "JavaScript Mastery from Zero to...
Instructional Video3:39
Curated Video

JavaScript Mastery from Zero to Hero - Prepare for Coding Interviews - Exercise - Use the Splice Method to Decode the Mystery

Higher Ed
This is an exercise video where you will use the splice method to decode the mystery. This clip is from the chapter "Data Structures - From Zero to Intermediate" of the series "JavaScript Mastery from Zero to Hero - Prepare for Coding...
Instructional Video4:08
Curated Video

JavaScript Mastery from Zero to Hero - Prepare for Coding Interviews - Example 1 - What Is Splice in JavaScript

Higher Ed
In this video, you will see the first example of the splice method in JavaScript. This clip is from the chapter "Data Structures - From Zero to Intermediate" of the series "JavaScript Mastery from Zero to Hero - Prepare for Coding...
Instructional Video8:11
Curated Video

JavaScript Mastery from Zero to Hero - Prepare for Coding Interviews - Solution - Modify Arrays and Remove Items in JavaScript

Higher Ed
In this video, we will discuss the solution to the exercise on modifying arrays and remove items in JavaScript from the previous video. This clip is from the chapter "Data Structures - From Zero to Intermediate" of the series "JavaScript...
Instructional Video1:38
Curated Video

JavaScript Mastery from Zero to Hero - Prepare for Coding Interviews - Exercise - Modify Arrays and Remove Items in JavaScript

Higher Ed
This is an exercise video where you will modify arrays and remove items in JavaScript. This clip is from the chapter "Data Structures - From Zero to Intermediate" of the series "JavaScript Mastery from Zero to Hero - Prepare for Coding...
Instructional Video6:56
Curated Video

JavaScript Mastery from Zero to Hero - Prepare for Coding Interviews - Remove Array Items with Pop and Shift in JavaScript

Higher Ed
In this video, you will learn how to remove elements from an array in JavaScript using the pop() and shift() methods. The pop() method removes the last element from an array and returns it, while the shift() method removes the first...
Instructional Video4:28
Curated Video

JavaScript Mastery from Zero to Hero - Prepare for Coding Interviews - Solution - Array Function for an Anime App

Higher Ed
In this video, we will discuss the solution to the exercise on the array function for an anime app from the previous video. This clip is from the chapter "Data Structures - From Zero to Intermediate" of the series "JavaScript Mastery...
Instructional Video7:45
Curated Video

JavaScript Mastery from Zero to Hero - Prepare for Coding Interviews - Modifying Arrays and Unshift in JavaScript

Higher Ed
In this video, you will learn how to modify arrays in JavaScript. You will learn how to modify a specific element of an array using bracket notation. This clip is from the chapter "Data Structures - From Zero to Intermediate" of the...
Instructional Video2:30
Curated Video

JavaScript Mastery from Zero to Hero - Prepare for Coding Interviews - Exercise - Accessing City Weather Data Array

Higher Ed
This is an exercise video where you will be accessing city weather data array. This clip is from the chapter "Data Structures - From Zero to Intermediate" of the series "JavaScript Mastery from Zero to Hero - Prepare for Coding...
Instructional Video4:19
Curated Video

JavaScript Mastery from Zero to Hero - Prepare for Coding Interviews - Accessing Arrays with Bracket Notation - Example 2

Higher Ed
In this video, you will see one more example on how to access the array using bracket notation in JavaScript. This clip is from the chapter "Data Structures - From Zero to Intermediate" of the series "JavaScript Mastery from Zero to Hero...
Instructional Video4:39
Curated Video

JavaScript Mastery from Zero to Hero - Prepare for Coding Interviews - Accessing Arrays with Bracket Notation - Example 1

Higher Ed
This video covers the topic of accessing arrays with bracket notation in JavaScript. The instructor demonstrates how to use bracket notation to retrieve specific values within an array. This clip is from the chapter "Data Structures -...
Instructional Video8:52
Curated Video

JavaScript Mastery from Zero to Hero - Prepare for Coding Interviews - Indexing Values in Arrays with JavaScript

Higher Ed
In this video, you will learn how to access specific values in arrays using their index number in JavaScript. By the end of the video, you should have a solid understanding of how to use indexing to work with arrays in JavaScript. This...
Instructional Video7:43
Curated Video

JavaScript Mastery from Zero to Hero - Prepare for Coding Interviews - Exercise Solution - What Are Complex and Multi-Dimensional Arrays in JavaScript

Higher Ed
In this video, we will discuss the solution to the exercise on complex and multi-dimensional arrays in JavaScript. This clip is from the chapter "Data Structures - From Zero to Intermediate" of the series "JavaScript Mastery from Zero to...
Instructional Video6:31
Curated Video

JavaScript Mastery from Zero to Hero - Prepare for Coding Interviews - What Are Complex and Multi-Dimensional Arrays in JavaScript

Higher Ed
In this video, you will learn about complex and multi-dimensional arrays in JavaScript. You will understand how to declare and work with arrays that contain arrays as elements, commonly referred to as multi-dimensional arrays. This clip...
Instructional Video3:29
Curated Video

JavaScript Mastery from Zero to Hero - Prepare for Coding Interviews - The Length Method in JavaScript

Higher Ed
In this video, you will learn about the length method in JavaScript, which is used to find the number of elements in an array. The video will cover the basics of arrays, how the length method works, and how it can be used to manipulate...