odin-default-js-exercises/simon_says/simonSays.js

37 lines
423 B
JavaScript
Raw Normal View History

2017-09-20 23:04:46 +00:00
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
}