diff --git a/index.js b/index.js index c44a93222..9a01da991 100644 --- a/index.js +++ b/index.js @@ -1 +1,11 @@ -// code your solution here +function saturdayFun(activity = 'roller-skate'){ + return `This Saturday, I want to ${activity}!` +} +function mondayWork(activity = 'go to the office'){ + return `This Monday, I will ${activity}.` +} +function wrapAdjective(wrapper) { + return function(wrapperstring) { + return `You are ${wrapper}${wrapperstring}${wrapper}!` + } +}