mirror of
https://github.com/10h30/odin-javascript-exercises.git
synced 2026-06-05 15:09:09 +09:00
37 lines
423 B
JavaScript
37 lines
423 B
JavaScript
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
|
|
} |