From 59e16c82da5bd7bff19b0c3f77ae8fb510d55440 Mon Sep 17 00:00:00 2001 From: Yuriy Ivanenko Date: Mon, 6 May 2024 13:47:29 -0400 Subject: [PATCH] Passed 9 tests --- index.js | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/index.js b/index.js index c44a93222..97a3ba4c0 100644 --- a/index.js +++ b/index.js @@ -1 +1,14 @@ // code your solution here +function saturdayFun(activity='roller-skate'){ + return `This Saturday, I want to ${activity}!` +} + +const mondayWork = function(action='go to the office'){ + return `This Monday, I will ${action}.` +} + +function wrapAdjective(flair='*'){ + return function(adjective ='special'){ + return `You are ${flair}${adjective}${flair}!` + } +} \ No newline at end of file