From f4ed306af7ac5199301f6b1e4604c07637675535 Mon Sep 17 00:00:00 2001 From: Cayla Horsey Date: Mon, 6 May 2024 17:47:54 -0400 Subject: [PATCH] Complete lab --- index.js | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/index.js b/index.js index c44a93222..e9fba71fa 100644 --- a/index.js +++ b/index.js @@ -1 +1,15 @@ // 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}.` +}; + +function wrapAdjective(emphatic = '*') { + return function(compliment = 'special') { + return `You are ${emphatic}${compliment}${emphatic}!`; + } +};