fix(curriculum): fixed the spelling of the word "separate" (#53581)

This commit is contained in:
hminsky2002
2024-02-07 03:21:25 -05:00
committed by GitHub
parent f7629df53d
commit f5c2ad2f0b

View File

@@ -11,7 +11,7 @@ Now that you have the value of the input, you need to split it into an array of
The `.split()` method takes a string and splits it into an array of strings. You can pass it a string of characters or a RegEx to use as a separator. For example, `string.split(",")` would split the string at each comma and return an array of strings.
Use the `/,\s*/g` regex to split the `value` string by commas. You can tweak it based on the number of spaces seperating your values. Store the array in an `array` variable.
Use the `/,\s*/g` regex to split the `value` string by commas. You can tweak it based on the number of spaces separating your values. Store the array in an `array` variable.
# --hints--