fix(curriculum): correct casing of JavaScript (#62369)

This commit is contained in:
Diem-Trang Pham
2025-09-25 23:19:42 -05:00
committed by GitHub
parent 1f8acc6df5
commit 2923cf7331
2 changed files with 2 additions and 2 deletions

View File

@@ -6,4 +6,4 @@ superBlock: full-stack-developer
## Introduction to Working with the DOM, Click Events, and Web APIs
In these lecture videos, you will learn how to work with the DOM, click events, and web APIs, using Javascript.
In these lecture videos, you will learn how to work with the DOM, click events, and web APIs, using JavaScript.

View File

@@ -10,7 +10,7 @@ dashedName: step-1
JavaScript is the programming language that powers the web. Unlike the HTML and CSS you have learned previously, JavaScript is most commonly used to write logic instead of markup.
In this project, you will learn the basics of Javascript and apply those concepts to building a pyramid generator.
In this project, you will learn the basics of JavaScript and apply those concepts to building a pyramid generator.
A pyramid generator is a program where you can set the type of character, the count for the pyramid, and the direction of the pyramid. The program will then generate a pyramid based on those inputs.