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.
davhojt
606eaaa0d5
|
3 years ago | |
---|---|---|
.. | ||
README.md | 3 years ago |
README.md
Method Man
Instructions
Write 5 functions:
words
: that takes a string, splits it by spaces, and returns an array of those substrings.sentence
: that takes an array of strings, and joins them with spaces to return a single string.yell
: that takes a string and returns it in upper case.whisper
: that takes a string and returns it in lower case, surrounded by*
.capitalize
: that takes a string and transforms it so that the first character is upper case, and the subsequent characters are lower case.