Hi, what do you want to do?
Curated Video
AWS, JavaScript, React - Deploy Web Apps on the Cloud - Implementing the Calculator - Operators
In this video, we will continue to implement the calculator and test the operator functions by clicking on the operator buttons that we have created on the calculator.
Curated Video
AWS, JavaScript, React - Deploy Web Apps on the Cloud - Implementing the Calculator - Display
After learning to use the React state hook, we will now look at storing variables passed with the () event to put in the calculator's display.
Curated Video
AWS, JavaScript, React - Deploy Web Apps on the Cloud - Using React State Hook
In this lesson, you will learn about the React State hook component and how to implement it in our project. We will understand a hook, a function provided by React; they start with the word "use".
Curated Video
AWS, JavaScript, React - Deploy Web Apps on the Cloud - Passing Parameters in Callback Functions
After learning how to use callback functions in the previous lesson, we will now use the callback functions we created in the parent component of our code and pass them on to the instances of the child component.
Curated Video
AWS, JavaScript, React - Deploy Web Apps on the Cloud - Events in React
After learning how to build the visuals of our basic calculator, we will now create events using the () function to define tasks to the buttons created in the visual and use callback functions.
Curated Video
AWS, JavaScript, React - Deploy Web Apps on the Cloud - Building the Calculator Visuals
This video demonstrates how to build the visuals of our elementary calculator project. We are going to develop a very basic component called a calculator.
Curated Video
AWS, JavaScript, React - Deploy Web Apps on the Cloud - React Components, Props, and Callbacks
In this video, we will look at the React root component, namely the app, the dashboard, the admin, and other elements of the project that form the tree structure of React.
Curated Video
AWS, JavaScript, React - Deploy Web Apps on the Cloud - Introduction to Props in React
In this lesson, you will learn more about props or properties used in React. Here, the properties are transferred from the parent component to the child component.
Curated Video
AWS, JavaScript, React - Deploy Web Apps on the Cloud - Why Components?
This video elaborates on functional components because the React program encourages using functional components.
Curated Video
AWS, JavaScript, React - Deploy Web Apps on the Cloud - Functional Components in React
In this video, we will understand how to introduce functional components to load data into our React project, the basic calculator.
Curated Video
AWS, JavaScript, React - Deploy Web Apps on the Cloud - Introduction to JSX
In this video, you will learn to use JSX, which allows us to incorporate HTML into our JavaScript codes.
Curated Video
AWS, JavaScript, React - Deploy Web Apps on the Cloud - Code Pen
In this video, you will learn how to use the code pen application as the text editor for writing our codes in the codepen.io portal.
Curated Video
AWS, JavaScript, React - Deploy Web Apps on the Cloud - Tools Needed - Windows installer/binary, macOS installer/binary, and Linux binaries
In this video, you will learn the tools we need to develop our React program, including Windows installer/binary, macOS installer/binary, and Linux binaries.
Curated Video
AWS, JavaScript, React - Deploy Web Apps on the Cloud - Hello, React
This is the first text code practice for the React program. Here you will learn how to write a simple text code, Hello React.
Curated Video
AWS, JavaScript, React - Deploy Web Apps on the Cloud - Project Overview
This introductory video outlines the concepts to be covered in this module, including the various components and events in React.
Curated Video
AWS, JavaScript, React - Deploy Web Apps on the Cloud - What Is React?
This video discusses a JavaScript library used to build user interfaces and maintained by Facebook.
Curated Video
AWS, JavaScript, React - Deploy Web Apps on the Cloud - Skills Required
This video discusses the skills required to learn about React, including ES2015 JavaScript (arrow functions and destructuring).
Curated Video
AWS, JavaScript, React - Deploy Web Apps on the Cloud - JavaScript Project 2 - Completion
This is the continuation lesson of the practice project (photo gallery) based on what we have learned about JavaScript so far.
Curated Video
AWS, JavaScript, React - Deploy Web Apps on the Cloud - JavaScript Project 2 - Photo Gallery
This is a practice project (photo gallery) based on what we have learned about JavaScript.
Curated Video
AWS, JavaScript, React - Deploy Web Apps on the Cloud - JavaScript Project 1 - BG Color Changer
This is a practice project (background color changer) based on what we have learned about JavaScript.
Curated Video
AWS, JavaScript, React - Deploy Web Apps on the Cloud - JavaScript Events
In this video, we will look at the different events like mouse clicks, mouse overs, mouse out, key down, and document load.
Curated Video
AWS, JavaScript, React - Deploy Web Apps on the Cloud - JavaScript Functions
In this video, you will learn about JavaScript functions to create blocks of code to perform particular tasks when called upon with an example.
Curated Video
AWS, JavaScript, React - Deploy Web Apps on the Cloud - JavaScript Break and Continue
In this lesson, you will learn about the break and continue statements to either exit a loop or skip an iteration of a loop with examples.
Curated Video
AWS, JavaScript, React - Deploy Web Apps on the Cloud - JavaScript Do-While Loop
Here, we will look at a variation of the while loop, the do-while loop, which will execute the entire code block once before checking that the condition is met and then allows the execution as long as the condition remains true.