Curated Video
Modern JavaScript from the Beginning - Second Edition - Else-If and Nesting
Building on the previous video, this video shows how to use else-if statements to handle multiple conditions and how to nest if statements within each other. This clip is from the chapter "Logic and Control Flow" of the series "Modern...
Curated Video
Modern JavaScript from the Beginning - Second Edition - Function Challenges
This video provides challenges for us to test our understanding of the concepts covered in this section. This clip is from the chapter "Functions, Scope, and Execution Context" of the series "Modern JavaScript from the Beginning".In this...
Curated Video
Modern JavaScript from the Beginning - Second Edition - More on Arguments and Parameters
This video discusses the differences between arguments and parameters in JavaScript, and how to use them effectively in our functions. This clip is from the chapter "Functions, Scope, and Execution Context" of the series "Modern...
Curated Video
Modern JavaScript from the Beginning - Second Edition - Array Challenges
This video presents some challenges related to arrays and requires students to apply their knowledge of array methods and manipulation. This clip is from the chapter "Arrays and Objects" of the series "Modern JavaScript from the...
Curated Video
Modern JavaScript from the Beginning - Second Edition - Basic Array Methods
In this video, you will learn about some basic array methods in JavaScript, such as push(), pop(), shift(), unshift(), and splice(). This clip is from the chapter "Arrays and Objects" of the series "Modern JavaScript from the...
Curated Video
Modern JavaScript from the Beginning - Second Edition - Variables and Constants
In this video, we will cover variables and constants in JavaScript, how to declare them, and how to assign values to them. This clip is from the chapter "Variables, Data Types, Methods, and More" of the series "Modern JavaScript from the...
Curated Video
Modern JavaScript from the Beginning - Second Edition - Execution Context in Action
This video demonstrates how execution context works in practice, using examples to illustrate the different stages of the execution context. This clip is from the chapter "Functions, Scope, and Execution Context" of the series "Modern...
Curated Video
Modern JavaScript from the Beginning - Second Edition - Arrow Functions
Here, you will learn about arrow functions, which provide a shorter syntax for writing functions and how they work. This clip is from the chapter "Functions, Scope, and Execution Context" of the series "Modern JavaScript from the...
Curated Video
Modern JavaScript from the Beginning - Second Edition - Global and Function Scope
Here, you will learn about global and function scope, and how JavaScript handles variable declarations within these scopes. This clip is from the chapter "Functions, Scope, and Execution Context" of the series "Modern JavaScript from the...
Curated Video
Modern JavaScript from the Beginning - Second Edition - Object Challenges
This video presents some challenges related to objects and requires students to apply their knowledge of object manipulation and methods. This clip is from the chapter "Arrays and Objects" of the series "Modern JavaScript from the...
Curated Video
Modern JavaScript from the Beginning - Second Edition - Object Spread Operator and Methods
This video explains how to use the object spread operator and several object methods in JavaScript, such as Object.assign(), Object.keys(), and Object.values(). This clip is from the chapter "Arrays and Objects" of the series "Modern...
Curated Video
Modern JavaScript from the Beginning - Second Edition - Number Challenge
In this video, we will tackle a coding challenge to reverse a given number in JavaScript. We will walk through the problem step by step, discuss different approaches, and write a solution using JavaScript math and string methods. This...
Curated Video
Modern JavaScript from the Beginning - Second Edition - Capitalize Challenge
In this video, we will tackle a coding challenge to capitalize the first letter of each word in a given string. We will walk through the problem step by step, discuss different approaches, and write a solution using JavaScript string...
Curated Video
Modern JavaScript from the Beginning - Second Edition - Type Coercion
In this video, we will cover type coercion in JavaScript, which is the process of converting one data type to another. We will explore implicit and explicit type coercion and learn how to avoid common pitfalls when working with type...
Curated Video
Modern JavaScript from the Beginning - Second Edition - Operators
In this video, we will introduce operators in JavaScript, including arithmetic, comparison, logical, and assignment operators, and how to use them in our code. This clip is from the chapter "Variables, Data Types, Methods, and More" of...
Curated Video
Modern JavaScript from the Beginning - Second Edition - Type Conversion
In this video, we will cover type conversion in JavaScript, including implicit and explicit conversion, and how to convert between data types. This clip is from the chapter "Variables, Data Types, Methods, and More" of the series "Modern...
Curated Video
Modern JavaScript from the Beginning - Second Edition - Primitive Versus Reference Types
In this video, we will explain the difference between primitive and reference types in JavaScript and how they are stored in memory. This clip is from the chapter "Variables, Data Types, Methods, and More" of the series "Modern...
Curated Video
Modern JavaScript from the Beginning - Second Edition - Comments and Shortcuts
In this video, we will go over commenting in JavaScript and introduce some helpful keyboard shortcuts for our coding workflow. This clip is from the chapter "Variables, Data Types, Methods, and More" of the series "Modern JavaScript from...
Curated Video
Modern JavaScript from the Beginning - Second Edition - Using the Console
In this video, we will explain how to use the browser console to test and debug our code. This clip is from the chapter "Variables, Data Types, Methods, and More" of the series "Modern JavaScript from the Beginning".In this section, we...
Curated Video
Modern JavaScript from the Beginning - Second Edition - The Sandbox Files
In this video, we will introduce the "sandbox" files that we will be using throughout the course to test our code and explore new concepts. This clip is from the chapter "Variables, Data Types, Methods, and More" of the series "Modern...
Curated Video
Modern JavaScript from the Beginning - Second Edition - Tools and Setup
In this video, we will see the tools we will need to follow along with the course. We will cover text editor, web browser, and JavaScript console. We will also see how to set up our development environment and install any necessary...
Curated Video
Modern JavaScript from the Beginning - Second Edition - Course Outline and Projects
In this video, we will provide an overview of the course outline and the projects we will build. We will discuss the various sections of the course and what you can expect to learn from each one. Additionally, we will showcase the...
Curated Video
Machine Learning: Random Forest with Python from Scratch - Accuracy and Error-2
In this video, you will learn to implement the accuracy method to help determine our model's performance. This clip is from the chapter "Random Forest Step-by-Step" of the series "Machine Learning: Random Forest with Python from...
Curated Video
Machine Learning: Random Forest with Python from Scratch - Feature Importance
After understanding features in a previous lesson, we will look at finding the most critical features' probability. This clip is from the chapter "Random Forest Step-by-Step" of the series "Machine Learning: Random Forest with Python...