mirror of https://github.com/01-edu/public.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Clement Denis
d3a8b56646
|
4 years ago | |
---|---|---|
.. | ||
README.md | 4 years ago |
README.md
Keep
Instructions
Using the .slice
method again and the provided alphabet
variable of a string
of all the characters in an alphabet:
- Declare a
keepFirst
variable of only the 6 first characters fromalphabet
. - Declare a
keepLast
variable of only the 7 last characters fromalphabet
. - Declare a
keepFirstLast
variable of the 3 first characters and 4 last characters fromalphabet
.
Example: if
alphabet
value is'abcdefghijklmnopqrstuvwxyz'
keepFirst
must be'abcdef'
keepLast
must be'tuvwxyz'
keepFirstLast
must be'abcwxyz'