feat: add spellcheck
Some checks failed
Node.js CI / CI (push) Failing after 7s
Security Scan and Upload / Security & DefectDojo Upload (push) Successful in 49s

This commit is contained in:
2025-12-22 18:11:19 -08:00
parent b0315e6e18
commit d108ddecd5
7 changed files with 849 additions and 68 deletions

View File

@@ -179,7 +179,7 @@ What are our steps?
- For each row, we gotta know how many characters to use. We use more characters in each row.
- Finally, print our result.
Okay, let's cretae a loop to iterate through the number of rows. Sounds like a great usecase for a standard `for` loop.
Okay, let's create a loop to iterate through the number of rows. Sounds like a great usecase for a standard `for` loop.
```javascript
function pyramid(characterToBuildPyramidWith, numOfRows) {