Curated Video
JavaScript Mastery from Zero to Hero - Prepare for Coding Interviews - What Is the IndexOf Method in JavaScript
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...
Curated Video
JavaScript Mastery from Zero to Hero - Prepare for Coding Interviews - Make Multiple Copies of an Array with the Spread Operator
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...
Curated Video
JavaScript Mastery from Zero to Hero - Prepare for Coding Interviews - How to Copy an Array with the Spread Operator in JavaScript
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...
Curated Video
JavaScript Mastery from Zero to Hero - Prepare for Coding Interviews - Solution - Update Cryptocurrency Profile Data
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...
Curated Video
JavaScript Mastery from Zero to Hero - Prepare for Coding Interviews - Exercise - Update Cryptocurrency Profile Data
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...
Curated Video
JavaScript Mastery from Zero to Hero - Prepare for Coding Interviews - How to Clone Arrays with Slice in JavaScript
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...
Curated Video
JavaScript Mastery from Zero to Hero - Prepare for Coding Interviews - Solution - Update New User Database with Splice
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...
Curated Video
JavaScript Mastery from Zero to Hero - Prepare for Coding Interviews - Exercise - Update New User Database with Splice
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...
Curated Video
JavaScript Mastery from Zero to Hero - Prepare for Coding Interviews - Adding to Arrays with Splice in JavaScript
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...
Curated Video
JavaScript Mastery from Zero to Hero - Prepare for Coding Interviews - Bonus Solution - Use the Splice Method to Decode the Puzzle
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...
Curated Video
JavaScript Mastery from Zero to Hero - Prepare for Coding Interviews - Exercise - Use the Splice Method to Decode the Mystery
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...
Curated Video
JavaScript Mastery from Zero to Hero - Prepare for Coding Interviews - Example 1 - What Is Splice in JavaScript
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...
Curated Video
JavaScript Mastery from Zero to Hero - Prepare for Coding Interviews - Solution - Modify Arrays and Remove Items in JavaScript
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...
Curated Video
JavaScript Mastery from Zero to Hero - Prepare for Coding Interviews - Exercise - Modify Arrays and Remove Items in JavaScript
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...
Curated Video
JavaScript Mastery from Zero to Hero - Prepare for Coding Interviews - Remove Array Items with Pop and Shift in JavaScript
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...
Curated Video
JavaScript Mastery from Zero to Hero - Prepare for Coding Interviews - Solution - Array Function for an Anime App
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...
Curated Video
JavaScript Mastery from Zero to Hero - Prepare for Coding Interviews - Modifying Arrays and Unshift in JavaScript
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...
Curated Video
JavaScript Mastery from Zero to Hero - Prepare for Coding Interviews - Exercise - Accessing City Weather Data Array
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...
Curated Video
JavaScript Mastery from Zero to Hero - Prepare for Coding Interviews - Accessing Arrays with Bracket Notation - Example 2
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...
Curated Video
JavaScript Mastery from Zero to Hero - Prepare for Coding Interviews - Accessing Arrays with Bracket Notation - Example 1
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 -...
Curated Video
JavaScript Mastery from Zero to Hero - Prepare for Coding Interviews - Indexing Values in Arrays with JavaScript
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...
Curated Video
JavaScript Mastery from Zero to Hero - Prepare for Coding Interviews - Exercise Solution - What Are Complex and Multi-Dimensional Arrays in JavaScript
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...
Curated Video
JavaScript Mastery from Zero to Hero - Prepare for Coding Interviews - What Are Complex and Multi-Dimensional Arrays in JavaScript
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...
Curated Video
JavaScript Mastery from Zero to Hero - Prepare for Coding Interviews - The Length Method in JavaScript
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...