Skip to content

Commit 32b21f0

Browse files
authored
feat: add DSA modules in js cert (freeCodeCamp#65086)
1 parent 6fd632d commit 32b21f0

File tree

2 files changed

+50
-0
lines changed

2 files changed

+50
-0
lines changed

client/i18n/locales/english/intro.json

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5303,12 +5303,42 @@
53035303
"classes-and-the-this-keyword": "Classes",
53045304
"lab-bank-account-manager": "Build a Bank Account Management Program",
53055305
"recursion": "Recursion",
5306+
"data-structures": "Data Structures",
5307+
"algorithms": "Algorithms",
5308+
"graphs-and-trees": "Graphs and Trees",
5309+
"dynamic-programming": "Dynamic Programming",
53065310
"functional-programming": "Functional Programming",
53075311
"asynchronous-javascript": "Asynchronous JavaScript",
53085312
"lab-weather-app": "Build a Weather App",
53095313
"review-javascript": "JavaScript Review",
53105314
"javascript-certification-exam": "JavaScript Certification Exam"
53115315
},
5316+
"module-intros": {
5317+
"data-structures": {
5318+
"note": "Coming Spring 2026",
5319+
"intro": [
5320+
"In this module, you will learn about linked lists, stacks, queues and more."
5321+
]
5322+
},
5323+
"algorithms": {
5324+
"note": "Coming Spring 2026",
5325+
"intro": [
5326+
"In this module, you will learn about common sorting and searching algorithms including bubble sort, binary search and more."
5327+
]
5328+
},
5329+
"graphs-and-trees": {
5330+
"note": "Coming Spring 2026",
5331+
"intro": [
5332+
"In this module, you will learn about graphs, trees and tries."
5333+
]
5334+
},
5335+
"dynamic-programming": {
5336+
"note": "Coming Spring 2026",
5337+
"intro": [
5338+
"In this module, you will learn how dynamic programming works."
5339+
]
5340+
}
5341+
},
53125342
"blocks": {
53135343
"lecture-introduction-to-javascript": {
53145344
"title": "Introduction to JavaScript",

curriculum/structure/superblocks/javascript-v9.json

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -293,6 +293,26 @@
293293
"quiz-recursion"
294294
]
295295
},
296+
{
297+
"dashedName": "data-structures",
298+
"comingSoon": true,
299+
"blocks": []
300+
},
301+
{
302+
"dashedName": "algorithms",
303+
"comingSoon": true,
304+
"blocks": []
305+
},
306+
{
307+
"dashedName": "graphs-and-trees",
308+
"comingSoon": true,
309+
"blocks": []
310+
},
311+
{
312+
"dashedName": "dynamic-programming",
313+
"comingSoon": true,
314+
"blocks": []
315+
},
296316
{
297317
"dashedName": "functional-programming",
298318
"blocks": [

0 commit comments

Comments
 (0)