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.
Curated Video
AWS, JavaScript, React - Deploy Web Apps on the Cloud - JavaScript While Loops
In this lecture, we will look at the while loop, which can be executed as long as a condition or a set of conditions specified are met with an example.
Curated Video
AWS, JavaScript, React - Deploy Web Apps on the Cloud - JavaScript For-In Loop
Here, you will learn to create an example script to understand the "for-in" loop, which is looped to the properties of an object.
Curated Video
AWS, JavaScript, React - Deploy Web Apps on the Cloud - JavaScript For Loops
In this video, we will understand the "For" loop, which allows us to execute a block of code repeatedly with an example.
Curated Video
AWS, JavaScript, React - Deploy Web Apps on the Cloud - JavaScript Booleans
Here, we will explore the Boolean function used to determine if an expression or a variable is true.
Curated Video
AWS, JavaScript, React - Deploy Web Apps on the Cloud - JavaScript Comparisons
In this lesson, we will understand comparison operators to compare the quality or difference between variables or values with examples.
Curated Video
AWS, JavaScript, React - Deploy Web Apps on the Cloud - JavaScript Conditional Statements
This lesson elaborates on the different conditional statements available in JavaScript, including if, else, and else if.
Curated Video
AWS, JavaScript, React - Deploy Web Apps on the Cloud - JavaScript Joining Arrays
This video demonstrates joining two arrays using the Concat () method.
Curated Video
AWS, JavaScript, React - Deploy Web Apps on the Cloud - JavaScript Sorting an Array
In this lesson, you will learn how to sort elements alphabetically using the sort() method with a sample script.
Curated Video
AWS, JavaScript, React - Deploy Web Apps on the Cloud - JavaScript Splicing an Array
You will learn how to add multiple new items to an array using the splice() method, which also allows us to specify the position of the new element and if elements need to be removed.
Curated Video
AWS, JavaScript, React - Deploy Web Apps on the Cloud - JavaScript Changing and Deleting Elements
Let's learn how to change array elements using an index number and change or delete elements using functions.
Curated Video
AWS, JavaScript, React - Deploy Web Apps on the Cloud - JavaScript Arrays - Pop - Push - Shift - Unshift
In this video, you will learn about the different functions or methods and their uses, including pop, push, shift, and unshift.