Skip to content

Commit e24565b

Browse files
authored
chore(curriculum): rm vids from classes & recursion lectures (freeCodeCamp#61573)
1 parent 8c30401 commit e24565b

File tree

5 files changed

+5
-40
lines changed

5 files changed

+5
-40
lines changed

curriculum/challenges/english/25-front-end-development/lecture-understanding-how-to-work-with-classes-in-javascript/6733affc29df1304e2c97e88.md

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,12 @@
11
---
22
id: 6733affc29df1304e2c97e88
33
title: What Are Classes, and How Do They Work in JavaScript?
4-
challengeType: 11
5-
videoId: Ap99e6plM10
4+
challengeType: 19
65
dashedName: what-are-classes-and-how-do-they-work-in-javascript
76
---
87

98
# --description--
109

11-
Watch the video or read the transcript and answer the questions below.
12-
13-
# --transcript--
14-
15-
What are classes, and how do they work in JavaScript?
16-
1710
Let's learn about classes in JavaScript.
1811

1912
In modern JavaScript, classes are like blueprints that you can define in code for creating multiple objects of the same kind.

curriculum/challenges/english/25-front-end-development/lecture-understanding-how-to-work-with-classes-in-javascript/673403ca2bb16658309e3632.md

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,12 @@
11
---
22
id: 673403ca2bb16658309e3632
33
title: How Does the This Keyword Work?
4-
challengeType: 11
5-
videoId: Tt1v6kLAdMo
4+
challengeType: 19
65
dashedName: how-does-the-this-keyword-work
76
---
87

98
# --description--
109

11-
Watch the video or read the transcript and answer the questions below.
12-
13-
# --transcript--
14-
15-
How does the `this` keyword work?
16-
1710
Let's learn about the `this` keyword. You learned that classes are like blueprints that you can use to create objects.
1811

1912
These blueprints need a general way to refer to the specific object that is being created, accessed, or modified within the code. That's exactly what the `this` keyword is used for. It refers to the context where the code is supposed to run. If you use it within a method, the value of `this` will be a reference to the object associated to that method. This way, you can access the properties and methods of the object within the class and reuse the method on different objects.

curriculum/challenges/english/25-front-end-development/lecture-understanding-how-to-work-with-classes-in-javascript/673403d2aa52d8586a14a269.md

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,12 @@
11
---
22
id: 673403d2aa52d8586a14a269
33
title: What Is Class Inheritance, and How Does It Work?
4-
challengeType: 11
5-
videoId: DNO-xTd5D70
4+
challengeType: 19
65
dashedName: what-is-class-inheritance-and-how-does-it-work
76
---
87

98
# --description--
109

11-
Watch the video or read the transcript and answer the questions below.
12-
13-
# --transcript--
14-
15-
What is class inheritance, and how does it work?
16-
1710
Let's learn about inheritance and how it works in JavaScript.
1811

1912
In programming, inheritance allows you to define classes that inherit properties and methods from other classes.

curriculum/challenges/english/25-front-end-development/lecture-understanding-how-to-work-with-classes-in-javascript/673403dbf5c9835898632c84.md

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,12 @@
11
---
22
id: 673403dbf5c9835898632c84
33
title: What Are Static Properties and Methods in Classes?
4-
challengeType: 11
5-
videoId: xDIqlqh6_EU
4+
challengeType: 19
65
dashedName: what-are-static-properties-and-methods-in-classes
76
---
87

98
# --description--
109

11-
Watch the video or read the transcript and answer the questions below.
12-
13-
# --transcript--
14-
15-
What are static properties and methods in classes?
16-
1710
Let's learn about static properties and methods.
1811

1912
Static properties and methods belong to the class itself, not to the individual instances of the class. You can access them directly on the class name without creating an instance of the class. They are defined within classes to encapsulate related functionality.

curriculum/challenges/english/25-front-end-development/lecture-understanding-recursion-and-the-call-stack/6733b02d1e556005a544c5e3.md

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,12 @@
11
---
22
id: 6733b02d1e556005a544c5e3
33
title: What Is Recursion, and How Does It Work?
4-
challengeType: 11
5-
videoId: u2Z7fAAzbYc
4+
challengeType: 19
65
dashedName: what-is-recursion-and-how-does-it-work
76
---
87

98
# --description--
109

11-
Watch the video or read the transcript and answer the questions below.
12-
13-
# --transcript--
14-
15-
What is recursion, and how does it work?
16-
1710
Let's learn how recursion works in JavaScript.
1811

1912
Recursion is a complicated feature that allows you to call a function repeatedly until a base-case is reached. Unlike a traditional loop, recursion allows you to handle something with an unknown depth, such as deeply nested objects/arrays, or a file tree. But you can also use it for more basic tasks, such as counting down from a given number.

0 commit comments

Comments
 (0)