diff --git a/index.js b/index.js index c44a93222..454820fa1 100644 --- a/index.js +++ b/index.js @@ -1 +1,13 @@ -// code your solution here +const saturdayFun = (funActivity = 'roller-skate') => { + return `This Saturday, I want to ${funActivity}!` +} + +const mondayWork = function (activity = "go to the office") { + return `This Monday, I will ${activity}.` +} + +const wrapAdjective = (whateverYouLike = "*") => { + return (howeverYouWish = "special") => { + return `You are ${whateverYouLike + howeverYouWish + whateverYouLike}!`; + } +} \ No newline at end of file