Curated Video
Modern JavaScript from the Beginning - Second Edition - What Is Unit Testing?
In this video, we will explain what unit testing is and why it's important. We will talk about the benefits of unit testing, the difference between unit testing and other types of testing, and the principles of good unit testing. This...
Curated Video
Modern JavaScript from the Beginning - Second Edition - Introduction and What Are Algorithms?
In this video, we will introduce the concept of algorithms and why they are important in programming. We will discuss what an algorithm is, the different types of algorithms, and why it's crucial to have good algorithms in software...
Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - How to Use Material UI in React.JS
In this video, you will learn to use Material UI, a popular UI library, in React.JS, and the process of installing and configuring Material UI in React projects. You will learn about the various components and styling options provided by...
Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Building a Restful API in React.JS - Part 2
Continuing from the previous video, we dive deeper into building a RESTful API in React.JS. You will learn about handling API responses, error handling, and implementing pagination for large datasets, and the process of structuring code...
Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - First Project (Part 1)
In this video, you will start working on the first part of the project. You will learn how to set up the project structure, create the necessary React components, and handle state management. The video will guide you through building the...
Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Conditional Rendering
This video delves into various techniques for conditionally rendering components based on specific conditions or user interactions, if statements, ternary operators, and logical operators for implementing conditional rendering effectively.
Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Understanding Hierarchy in React.JS
This video provides a comprehensive explanation of the hierarchy concept in React.JS. You will learn how components are structured in a hierarchical manner, with parent and child components, topics such as component composition, passing...
Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Props in React.JS
In this video, we will dive deeper into the concept of components in React.JS, create reusable and modular components that encapsulate specific functionality and can be composed together to build complex user interfaces, the different...
Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Components in React.JS
This video introduces template literals in React.JS to dynamically generate strings with embedded expressions. You will learn to use template literals to concatenate strings and variables in a more concise and readable way. You will...
Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Template Literals in React.JS
In this video, you will learn about different methods of styling components in React.JS. we will explore inline styling to directly apply styles to individual elements using JavaScript objects. You will learn about internal styling,...
Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Inline and Internal Styling in React.JS
In this video, you will learn about different methods of styling components in React.JS. You will explore inline styling, where you can directly apply styles to individual elements using JavaScript objects. You will also learn about...
Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - First React App
In this video, you will learn to create our first React application, be guided through the process of setting up a basic React project and understanding the structure of a React application. You will learn to create and render React...
Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Introduction to React.JS
In this video, we will look at React.JS, a popular JavaScript library for building user interfaces. You will learn about the benefits of using React, its component-based architecture, and the virtual DOM, and an overview of the key...
Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Insert Adjacent Element and Insert Adjacent HTML
This video introduces the insertAdjacentElement() and insertAdjacentHTML() methods, which provide flexible ways to insert elements or HTML content at specific positions relative to an element. You will learn to use these methods to...
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 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 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...