Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - While Loop
In this video, we will understand the while loop, which executes a block of code repeatedly as long as a specified condition is true, and topics such as loop initialization, condition evaluation, and loop termination.
Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Function with Return
In this video, we will discover the concept of return statements in JavaScript functions. You will learn to use return statements to return values from functions, making them more versatile and allowing us to use the returned value in...
Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Functions with Parameters
In this video, we will expand our understanding of functions in JavaScript by exploring how to define and use functions with parameters. You will learn to pass values to functions and use them within the function's code.
Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Functions
In this video, you will learn the basics of functions in JavaScript, including how to define and call functions. We will understand the role of functions in organizing and reusing code and learn to create functions to perform specific...
Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Prompt Box
In this video, we will explore the prompt box in JavaScript, which enables us to prompt the user for input. You will learn to create input dialogs using prompt boxes and use the user's input in our JavaScript code.
Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Comparison Operator
In this video, we will explore the comparison operators in JavaScript, such as equal to, not equal to, greater than, less than. You will learn to compare values and evaluate conditions based on the results of these comparisons.
Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Arithmetic Operator
In this video, we will dive into the arithmetic operators in JavaScript, including addition, subtraction, multiplication, and division. You will learn to perform basic mathematical operations and manipulate numerical values in code.
Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Data Types
In this video, we will explore the various data types in JavaScript, such as numbers, strings, Booleans, arrays, objects. We will understand how to work with these data types effectively, manipulate their values, and perform operations...
Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Break and Continue Statement
In this video, we will gain control over loops with the "break" and "continue" statements in JavaScript. We will use "break" to exit a loop prematurely, and "continue" to skip the current iteration and move to the next one, enhancing the...
Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Switch Statement
In this video, you will learn to use the "switch" statement in JavaScript to simplify the handling of multiple conditions. We will use this control structure to execute different blocks of code based on the value of a variable or an...
Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Condition Ternary Statement
In this video, we will discover the concise and compact syntax of the ternary statement in JavaScript. We will use this shorthand form to write conditional expressions with a quick and easy-to-read format.
Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - If Statement
In this video, you will learn to use the "if" statement in JavaScript to perform conditional execution based on a given condition. We will control the flow of our program by executing different blocks of code depending on whether the...
Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Advanced console.log
In this video, we will explore the advanced features and functionalities of the "console.log" method in JavaScript, how to format console output, use placeholders and substitutions, and log multiple values in a single statement.
Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - How to Use HTML Tags in JavaScript
In this video, you will learn to leverage the power of JavaScript to manipulate and interact with HTML elements and how to access HTML tags using JavaScript and modify their content, attributes, and styles dynamically.
Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - JavaScript Implementation
In this video, we will explore the various ways to implement JavaScript in web projects and how JavaScript can be embedded directly within HTML code or referenced externally in separate JavaScript files.
Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Syntax of JavaScript and Overview
In this video, we will dive into the syntax of JavaScript and gain an overview of its key components. You will learn about variables, data types, operators, control structures, functions. We will understand how JavaScript code is...
Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Media Queries
In this video, you will learn how to use media queries in CSS3 to apply specific styles based on the characteristics of the device or viewport. We will understand how to create responsive designs that adapt to different screen sizes,...
Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Box Shadow
In this video, we will master the box shadow property in CSS3 to add depth and shadow effects to elements. You will learn to control the size, spread, and color of the shadow to create visually appealing designs with depth and dimension.
Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Pseudo-Elements
In this video, we will uncover the magic of CSS3 pseudo-elements and learn to create dynamic and engaging content. We will discover pseudo-elements such as ::before and ::after, and understand how they can be used to insert content...
Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Pseudo-Classes part 2
In this video, we will continue exploration of CSS3 pseudo-classes and dive deeper into the world of advanced styling. You will learn about pseudo-classes such as :first-child, :nth-child, and :last-child, and understand how they can be...
Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Pseudo-Classes Part 1
In this video, we will discover the power of pseudo-classes in CSS3 and learn to target elements based on specific states or interactions. We will explore commonly used pseudo-classes such as :hover, :active, and :focus, and understand...
Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - DOM Model in CSS
In this video, we will gain a deeper understanding of the Document Object Model (DOM) and how it relates to CSS3. You will learn about the structure of the DOM, how elements are represented, and how CSS selectors interact with the DOM to...
Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Float
In this video, we will delve into CSS3's float property and learn to create floating elements that can be positioned to the left or right of their containing elements. We will understand the intricacies of the float property and its...
Curated Video
The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Overflow
In this video, we will master the art of handling overflow in CSS3 and learn to control the behavior of content when it exceeds the dimensions of its container. We will discover how to handle overflow with properties such as overflow-x...