fix(curriculum): clarify constant wording in workshop (#66039)

This commit is contained in:
Supravisor
2026-02-25 21:39:40 +13:00
committed by GitHub
parent 7d3467b26e
commit 46b300120f
@@ -16,7 +16,7 @@ const str = "abcd";
str.slice(0, 3); // "abc"
```
Change the value of the `camelCasedVersion` from an empty string to the result of using the `slice()` method on the `lowercaseWord` variable. Pass in the number `0` and `5` which represent the start and end indices for the `slice()` method.
You should change the existing `camelCasedVersion` assignment by replacing the empty string with `lowercaseWord.slice(0, 5)`.
Now you should see the word `"camel"` in the console.