forked from code-differently/StringsNTings-js
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathStringsAndTings.js
More file actions
29 lines (23 loc) · 767 Bytes
/
StringsAndTings.js
File metadata and controls
29 lines (23 loc) · 767 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
class StringsAndTings {
// @return string with identical content, and the first character capitalized
camelCase(str){
return null;
}
//@return string with identical contents, with each word individually in reverse order
reverseString(str){
return null;
}
// @return string with identical contents, in reverse order, with first character capitalized
reverseThenCamelCase(str){
return null;
}
// @return string with identical contents excluding first and last character
removeFirstAndLastCharacter(str){
return null;
}
// @return string with identical characters, each with opposite casing
invertCasing(str){
return null;
}
}
module.exports = StringsAndTings;