Skip to content

Commit a79eb73

Browse files
committed
commit tree 53f5f1a
1 parent 20573d0 commit a79eb73

File tree

2 files changed

+2132
-27
lines changed

2 files changed

+2132
-27
lines changed

index.js

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,17 @@
11
// 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

Comments
 (0)