Instructional Video4:16
Curated Video

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

Higher Ed
In this video, we will explore the children property, which provides access to the child nodes of an element. We will retrieve child elements, text nodes, or other types of nodes within an element. Understanding children nodes is...
Instructional Video4:43
Curated Video

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

Higher Ed
This video focuses on traversing the DOM tree to access the parent nodes of elements. You will learn about the parentNode property to navigate to the immediate parent of an element, useful for traversing up the DOM tree, finding specific...
Instructional Video8:00
Curated Video

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

Higher Ed
In this video, we will discover the classList property and its associated methods, which provide a convenient way to manipulate CSS classes on elements, how to add, remove, toggle, and check for the presence of specific classes using...
Instructional Video3:41
Curated Video

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

Higher Ed
This video dives into the concept of event capturing in JavaScript. You will learn about the useCapture parameter in the addEventListener method and how it affects the order in which event handlers are triggered during event propagation....
Instructional Video3:41
Curated Video

The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - addEventListener (Events)

Higher Ed
In this video, we will explore the addEventListener method to attach event handlers to elements. You will learn to listen for and respond to various events, such as clicks, mouse movements, keyboard input. Understanding event handling is...
Instructional Video5:37
Curated Video

The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - DOM Get Methods

Higher Ed
In this video, we will discover various DOM methods to retrieve elements from the webpage, which include getElementById, getElementsByClassName, getElementsByTagName, and querySelector. You will learn to use these methods effectively to...
Instructional Video9:14
Curated Video

The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - DOM Other Objects

Higher Ed
This video explores other important objects in the DOM, such as the Document object, Window object, and Navigator object. You will learn about their properties and methods, and how they can be used to access and manipulate different...
Instructional Video4:38
Curated Video

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

Higher Ed
In this video, we will explore the Date object and its methods in JavaScript. We will discover functions such as getDate, getMonth, getFullYear, and getTime, which retrieve and manipulate different aspects of dates and times, and format...
Instructional Video7:37
Curated Video

The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Math Method - Part 2

Higher Ed
Continuing from the previous video, we will delve deeper into the Math object's methods. You will learn about Math functions, which enable you to generate random numbers, find the maximum and minimum values, and perform exponential...
Instructional Video7:54
Curated Video

The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Math Method - Part 1

Higher Ed
This video focuses on the Math object in JavaScript and its associated methods. We will explore functions which allow us to perform mathematical operations and round numbers in different ways and have a solid understanding of these Math...
Instructional Video8:06
Curated Video

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

Higher Ed
In this video, you will learn about the various Number methods available in JavaScript, which include isNaN, isFinite, toExponential, and toPrecision, among others. We will understand how to use these methods to perform operations on...
Instructional Video10:31
Curated Video

The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - String Methods - Part 3

Higher Ed
In this final part, we will explore more advanced string methods such as match, search, slice, substr, and includes, enable you to search for patterns in strings, extract substrings, and check whether a string contains a specific value,...
Instructional Video4:21
Curated Video

The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - String Methods - Part 2

Higher Ed
Continuing from the previous video, this part focuses on additional string methods such as trim, split, replace, concat, and charAt, and how to use these methods to perform operations such as removing whitespace, splitting strings into...
Instructional Video5:25
Curated Video

The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - String Methods - Part 1

Higher Ed
In this video, we will explore various methods available for manipulating and working with strings in JavaScript. You will learn about common string methods such as length, toUpperCase, toLowerCase, substring, indexOf, and more.
Instructional Video10:15
Curated Video

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

Higher Ed
In this video, you will learn about objects in JavaScript, which are complex data types that allow us to store and organize related data. We will explore how to create objects, define properties and methods, and access their values.
Instructional Video3:38
Curated Video

The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Slice and Splice Methods

Higher Ed
In this video, we will discover different ways to manipulate arrays. Slice() allows for creating a new array by extracting a portion of an existing array, while splice() enables the insertion, deletion, or replacement of elements within...
Instructional Video6:58
Curated Video

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

Higher Ed
In this video, we will explore the concept of variables in JavaScript and learn to declare and initialize variables using the "var" keyword. We will understand the scope of variables and how they can be accessed and manipulated within...
Instructional Video15:20
Curated Video

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

Higher Ed
In this video, we will create a mini project where we will apply the HTML5 and CSS3 concepts learned. We will follow along with the instructions to create a small webpage or interactive element and give hands-on experience in building...
Instructional Video2:48
Curated Video

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

Higher Ed
In the final video of the course, the instructor provides a comprehensive conclusion to the React.JS tutorial series and summarizes the key concepts and topics covered throughout the section, highlighting the main takeaways and providing...
Instructional Video4:49
Curated Video

The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Using array.map() Inside JSX Elements

Higher Ed
In this video, you will learn to dynamically render elements based on an array of data, leveraging the power of array.map() to generate JSX components. We will understand different use cases and provide tips for efficient and effective...
Instructional Video3:13
Curated Video

The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Building a Restful API in React.JS - Part 1

Higher Ed
In this video, you will learn the fundamentals of building a RESTful API in React.JS, the concepts of API endpoints, HTTP methods, and data fetching using the Axios library. You will also learn to structure React components and handle...
Instructional Video3:31
Curated Video

The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Building a Calculator - Part 2

Higher Ed
Continuing from the previous video, this part focuses on adding more advanced features to the calculator app. You will learn how to handle decimal inputs, implement additional arithmetic operations, and add functionality such as clearing...
Instructional Video3:27
Curated Video

The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - First Project (Part 2)

Higher Ed
Continuing from the previous video, this part focuses on adding more advanced features and functionality to the project. You will learn how to handle user input, implement data fetching and manipulation, and enhance the user interface...
Instructional Video2:05
Curated Video

The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Using the useNavigate() Hook

Higher Ed
In this video, we will explore the useNavigate() hook and learn to use it to perform navigation actions in response to user interactions or other events. The video covers scenarios such as redirecting after form submission and...