Instructional Video4:48
Curated Video

AWS, JavaScript, React - Deploy Web Apps on the Cloud - Code Pen

Higher Ed
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.
Instructional Video1:10
Curated Video

AWS, JavaScript, React - Deploy Web Apps on the Cloud - Tools Needed - Windows installer/binary, macOS installer/binary, and Linux binaries

Higher Ed
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.
Instructional Video6:31
Curated Video

AWS, JavaScript, React - Deploy Web Apps on the Cloud - Hello, React

Higher Ed
This is the first text code practice for the React program. Here you will learn how to write a simple text code, Hello React.
Instructional Video1:06
Curated Video

AWS, JavaScript, React - Deploy Web Apps on the Cloud - Project Overview

Higher Ed
This introductory video outlines the concepts to be covered in this module, including the various components and events in React.
Instructional Video4:50
Curated Video

AWS, JavaScript, React - Deploy Web Apps on the Cloud - What Is React?

Higher Ed
This video discusses a JavaScript library used to build user interfaces and maintained by Facebook.
Instructional Video1:03
Curated Video

AWS, JavaScript, React - Deploy Web Apps on the Cloud - Skills Required

Higher Ed
This video discusses the skills required to learn about React, including ES2015 JavaScript (arrow functions and destructuring).
Instructional Video2:38
Curated Video

AWS, JavaScript, React - Deploy Web Apps on the Cloud - JavaScript Project 2 - Completion

Higher Ed
This is the continuation lesson of the practice project (photo gallery) based on what we have learned about JavaScript so far.
Instructional Video2:24
Curated Video

AWS, JavaScript, React - Deploy Web Apps on the Cloud - JavaScript Project 2 - Photo Gallery

Higher Ed
This is a practice project (photo gallery) based on what we have learned about JavaScript.
Instructional Video2:14
Curated Video

AWS, JavaScript, React - Deploy Web Apps on the Cloud - JavaScript Project 1 - BG Color Changer

Higher Ed
This is a practice project (background color changer) based on what we have learned about JavaScript.
Instructional Video1:19
Curated Video

AWS, JavaScript, React - Deploy Web Apps on the Cloud - JavaScript Events

Higher Ed
In this video, we will look at the different events like mouse clicks, mouse overs, mouse out, key down, and document load.
Instructional Video1:54
Curated Video

AWS, JavaScript, React - Deploy Web Apps on the Cloud - JavaScript Functions

Higher Ed
In this video, you will learn about JavaScript functions to create blocks of code to perform particular tasks when called upon with an example.
Instructional Video1:15
Curated Video

AWS, JavaScript, React - Deploy Web Apps on the Cloud - JavaScript Break and Continue

Higher Ed
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.
Instructional Video1:58
Curated Video

AWS, JavaScript, React - Deploy Web Apps on the Cloud - JavaScript Do-While Loop

Higher Ed
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.
Instructional Video2:08
Curated Video

AWS, JavaScript, React - Deploy Web Apps on the Cloud - JavaScript While Loops

Higher Ed
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.
Instructional Video0:47
Curated Video

AWS, JavaScript, React - Deploy Web Apps on the Cloud - JavaScript For-In Loop

Higher Ed
Here, you will learn to create an example script to understand the "for-in" loop, which is looped to the properties of an object.
Instructional Video2:40
Curated Video

AWS, JavaScript, React - Deploy Web Apps on the Cloud - JavaScript For Loops

Higher Ed
In this video, we will understand the "For" loop, which allows us to execute a block of code repeatedly with an example.
Instructional Video1:22
Curated Video

AWS, JavaScript, React - Deploy Web Apps on the Cloud - JavaScript Booleans

Higher Ed
Here, we will explore the Boolean function used to determine if an expression or a variable is true.
Instructional Video2:26
Curated Video

AWS, JavaScript, React - Deploy Web Apps on the Cloud - JavaScript Comparisons

Higher Ed
In this lesson, we will understand comparison operators to compare the quality or difference between variables or values with examples.
Instructional Video6:18
Curated Video

AWS, JavaScript, React - Deploy Web Apps on the Cloud - JavaScript Conditional Statements

Higher Ed
This lesson elaborates on the different conditional statements available in JavaScript, including if, else, and else if.
Instructional Video1:04
Curated Video

AWS, JavaScript, React - Deploy Web Apps on the Cloud - JavaScript Joining Arrays

Higher Ed
This video demonstrates joining two arrays using the Concat () method.
Instructional Video1:24
Curated Video

AWS, JavaScript, React - Deploy Web Apps on the Cloud - JavaScript Sorting an Array

Higher Ed
In this lesson, you will learn how to sort elements alphabetically using the sort() method with a sample script.
Instructional Video1:35
Curated Video

AWS, JavaScript, React - Deploy Web Apps on the Cloud - JavaScript Splicing an Array

Higher Ed
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.
Instructional Video1:59
Curated Video

AWS, JavaScript, React - Deploy Web Apps on the Cloud - JavaScript Changing and Deleting Elements

Higher Ed
Let's learn how to change array elements using an index number and change or delete elements using functions.
Instructional Video2:05
Curated Video

AWS, JavaScript, React - Deploy Web Apps on the Cloud - JavaScript Arrays - Pop - Push - Shift - Unshift

Higher Ed
In this video, you will learn about the different functions or methods and their uses, including pop, push, shift, and unshift.