diff --git a/index.js b/index.js index c44a93222..4db32663d 100644 --- a/index.js +++ b/index.js @@ -1 +1,13 @@ -// code your solution here +function saturdayFun(activity = `roller-skate`) { + return `This Saturday, I want to ${activity}!`; +} + +const mondayWork = function(activity = `go to the office`) { + return `This Monday, I will ${activity}.`; +} + +const wrapAdjective = function(flair = `*`) { + return function (description = `special`) { + return `You are ${flair}${description}${flair}!`; + } +}