Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Children Nodes
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...
Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Parent Nodes
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...
Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - classList Method
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...
Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - useCapture
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....
Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - addEventListener (Events)
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...
Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - DOM Get Methods
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...
Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - DOM Other Objects
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...
Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Date Method
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...
Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Math Method - Part 2
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...
Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Math Method - Part 1
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...
Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Number Methods
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...
Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - String Methods - Part 3
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,...
Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - String Methods - Part 2
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...
Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - String Methods - Part 1
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.
Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Objects
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.
Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Slice and Splice Methods
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...
Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Var in JavaScript
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...
Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Mini Project
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...
Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Conclusion-3
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...
Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Using array.map() Inside JSX Elements
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...
Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Building a Restful API in React.JS - Part 1
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...
Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Building a Calculator - Part 2
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...
Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - First Project (Part 2)
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...
Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Using the useNavigate() Hook
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...