Instructional Video9:22
Curated Video

Modern JavaScript from the Beginning - Second Edition - What Is OOP?

Higher Ed
In this video, we will define object-oriented programming and explore its fundamental concepts, including objects, classes, and inheritance. This clip is from the chapter "OOP - Constructors and Prototypes" of the series "Modern...
Instructional Video2:08
Curated Video

Modern JavaScript from the Beginning - Second Edition - Section Introduction-OOP Section Intro

Higher Ed
In this video, we will introduce the topic of Object-Oriented Programming (OOP) and explain its importance in modern web development. This clip is from the chapter "OOP - Constructors and Prototypes" of the series "Modern JavaScript from...
Instructional Video10:32
Curated Video

Modern JavaScript from the Beginning - Second Edition - Keyboard Events and Key Properties

Higher Ed
In this video, we will look at how to handle keyboard events such as keydown, keyup, and keypress in JavaScript. You will learn how to use event listeners to respond to keyboard events and how to access key properties of the event...
Instructional Video13:05
Curated Video

Modern JavaScript from the Beginning - Second Edition - The Event Object

Higher Ed
In this video, you will learn about the event object in JavaScript. We will explore how to access and use properties of the event object to handle events more effectively. This clip is from the chapter "Events" of the series "Modern...
Instructional Video9:41
Curated Video

Modern JavaScript from the Beginning - Second Edition - Manipulating Styles and Classes

Higher Ed
This video covers how to manipulate CSS styles and classes in the DOM using JavaScript. It covers the style property and the classList property. This clip is from the chapter "DOM Manipulation" of the series "Modern JavaScript from the...
Instructional Video4:54
Curated Video

Modern JavaScript from the Beginning - Second Edition - Custom insertAfter() Challenge

Higher Ed
This video presents a coding challenge to create a custom function called insertAfter() that can insert an element after a specific element in the DOM. This clip is from the chapter "DOM Manipulation" of the series "Modern JavaScript...
Instructional Video13:53
Curated Video

Modern JavaScript from the Beginning - Second Edition - Traversing the DOM - All Nodes

Higher Ed
This video covers how to traverse the entire DOM, including text nodes and comment nodes. It covers the firstNode, lastNode, nextNode, and previousNode properties. This clip is from the chapter "DOM Manipulation" of the series "Modern...
Instructional Video14:17
Curated Video

Modern JavaScript from the Beginning - Second Edition - DOM Selectors - Single Elements

Higher Ed
This video covers the different ways to select a single element in the DOM using JavaScript. It covers the methods getElementById(), querySelector(), and querySelectorAll(). This clip is from the chapter "DOM Manipulation" of the series...
Instructional Video11:10
Curated Video

Modern JavaScript from the Beginning - Second Edition - Introduction to the DOM

Higher Ed
This video explains what the DOM is and how it works. It covers the concept of nodes and how they are used to represent the elements in an HTML document. The video also explains how JavaScript can be used to interact with the DOM. This...
Instructional Video5:51
Curated Video

Modern JavaScript from the Beginning - Second Edition - Working with Numbers

Higher Ed
In this video, we will cover the basics of working with numbers in JavaScript. We will explore number literals, operators, and common methods for working with numbers. This clip is from the chapter "Variables, Data Types, Methods, and...
Instructional Video6:30
Curated Video

Modern JavaScript from the Beginning - Second Edition - Object Challenges

Higher Ed
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...
Instructional Video12:02
Curated Video

Modern JavaScript from the Beginning - Second Edition - Object Spread Operator and Methods

Higher Ed
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...
Instructional Video10:12
Curated Video

Modern JavaScript from the Beginning - Second Edition - Using the Console

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

Machine Learning: Random Forest with Python from Scratch - Formats of Data

Higher Ed
You will learn about the different data formats in machine learning, including structured (labeled or unlabeled) and unstructured data, and how to choose the best format. This clip is from the chapter "Introduction to Machine Learning"...
Instructional Video10:01
Curated Video

Modern JavaScript from the Beginning - Second Edition - Base Tracker, Meal, and Workout Class

Higher Ed
This video introduces the concept of classes and demonstrates how to create base classes for the Tracalorie App project. The video covers the creation of the BaseTracker, Meal, and Workout classes and how to implement properties and...
Instructional Video5:11
Curated Video

Modern JavaScript from the Beginning - Second Edition - Project Planning and Diagram

Higher Ed
This video covers the project planning and diagramming phase of the Tracalorie App project. The video outlines the different components of the app and how they relate to each other and provides a visual diagram to help visualize the...
Instructional Video7:31
Curated Video

Modern JavaScript from the Beginning - Second Edition - Sealing and Freezing Objects

Higher Ed
In this video, you will learn about how to use the "Object.seal()" and "Object.freeze()" methods to make objects read-only and prevent changes to their properties. This clip is from the chapter "OOP - Classes, Getters, Setters, and...
Instructional Video9:18
Curated Video

Modern JavaScript from the Beginning - Second Edition - Property Flags and Descriptors

Higher Ed
In this video, you will learn about the different property flags and descriptors in JavaScript, including how to use the "Object.getOwnPropertyDescriptors()" method to inspect object properties. This clip is from the chapter "OOP -...
Instructional Video12:19
Curated Video

Modern JavaScript from the Beginning - Second Edition - Private Property Underscore Convention

Higher Ed
In this video, you will learn about the convention of using underscores to denote private object properties in JavaScript classes. This clip is from the chapter "OOP - Classes, Getters, Setters, and Private Properties" of the series...
Instructional Video7:34
Curated Video

Modern JavaScript from the Beginning - Second Edition - Classes

Higher Ed
In this video, you will learn about the basics of classes in JavaScript, including how to create classes, instantiate objects from classes, and use constructors to pass arguments to class methods. This clip is from the chapter "OOP -...
Instructional Video4:58
Curated Video

Modern JavaScript from the Beginning - Second Edition - Prototypes and the Prototype Chain

Higher Ed
In this video, we will introduce prototypes and explain how they are used to share properties and methods between objects. We will also discuss the prototype chain and how it is used to look up properties and methods. This clip is from...
Instructional Video7:33
Curated Video

Modern JavaScript from the Beginning - Second Edition - Working with Object Properties

Higher Ed
In this video, we will explore different ways of adding and modifying object properties. We will also discuss property descriptors and how they are used to control the behavior of object properties. This clip is from the chapter "OOP -...
Instructional Video7:17
Curated Video

The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Props in React.JS

Higher Ed
In this video, we will dive deeper into the concept of components in React.JS, create reusable and modular components that encapsulate specific functionality and can be composed together to build complex user interfaces, the different...
Instructional Video4:05
Curated Video

The Front-End Web Developer Bootcamp - HTML, CSS, JS, and React - Media Queries

Higher Ed
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,...