fix(curriculum): correct console.log numbering in build a calculator workshop Step 19 instructions (#64009)

This commit is contained in:
Ethan
2025-11-20 18:15:57 -05:00
committed by GitHub
parent f5befd0120
commit 563992ad5f
@@ -9,9 +9,9 @@ dashedName: step-19
In the final step of the workshop, you will need to test out your `calculateSquareRoot` function.
Add a second `console.log` that calls the `calculateSquareRoot` function with the argument of `25`.
Add a first `console.log` that calls the `calculateSquareRoot` function with the argument of `25`.
Then, add a third `console.log` that calls the `calculateSquareRoot` function with the argument of `100`.
Then, add a second `console.log` that calls the `calculateSquareRoot` function with the argument of `100`.
And with those changes, your calculator app is complete!