Welcome to my JavaScript Data Structures & Algorithms repository. This collection contains my solutions and practice scripts from the FreeCodeCamp JavaScript curriculum.
| ID | Project Name | Description | Concepts Used |
|---|---|---|---|
| 01 | Pyramid Generator | Constructs a character-based pyramid pattern. | Loops, Strings, Logic |
| 02 | Gradebook App | Calculates class averages and student grades. | Arrays, Functions, Lookup |
| Misc | test.html | Standard HTML boilerplate. | Used for browser console testing. |
You can run these programs using Node.js (as a CLI) or by attaching them to the HTML file to view in a browser console.
- Clone the repository:
git clone [https://github.com/taco0cat/DSA_JS.git](https://github.com/taco0cat/DSA_JS.git)
- Navigate to the folder:
cd DSA_JS - Run with Node:
node "01 - Pyramid_Generator.js"
- Open
test.htmlin your text editor. - Link the script you want to test in the
<body>:<script src="01 - Pyramid_Generator.js"></script>
- Open the file in Chrome/Edge and press
F12to view the Console output.
- Language: JavaScript (ES6+)
- Source: FreeCodeCamp JS Algorithms and Data Structures
Created by taco0cat