mirror of
https://github.com/10h30/odin-javascript-exercises.git
synced 2026-07-20 07:03:26 +09:00
Added test cases
This commit is contained in:
@@ -0,0 +1,37 @@
|
||||
function echo() {
|
||||
|
||||
}
|
||||
|
||||
function shout() {
|
||||
|
||||
}
|
||||
|
||||
function repeat() {
|
||||
|
||||
}
|
||||
|
||||
function pieceOfWord() {
|
||||
|
||||
}
|
||||
|
||||
function firstWord() {
|
||||
|
||||
}
|
||||
|
||||
function capitalize(word) {
|
||||
return word.charAt(0).toUpperCase() + word.slice(1);
|
||||
// This function just capitalizes the word given to it, use in conjunction with titleCreator
|
||||
}
|
||||
|
||||
function titleCreator() {
|
||||
|
||||
}
|
||||
|
||||
module.exports = {
|
||||
echo,
|
||||
shout,
|
||||
repeat,
|
||||
pieceOfWord,
|
||||
firstWord,
|
||||
titleCreator
|
||||
}
|
||||
Reference in New Issue
Block a user