We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 20573d0 commit a79eb73Copy full SHA for a79eb73
index.js
@@ -1 +1,17 @@
1
// code your solution here
2
+
3
+function saturdayFun(msg='roller-skate'){
4
+ return `This Saturday, I want to ${msg}!`
5
+};
6
+saturdayFun('bathe my dog');
7
8
+function mondayWork(message='go to the office'){
9
+ return `This Monday, I will ${message}.`
10
11
+mondayWork('work from home');
12
13
+function wrapAdjective(msg='*'){
14
+ return function (txt='special'){
15
+ return `You are ${msg}${txt}${msg}!`
16
+ }
17
+}
0 commit comments