Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions index.js
Original file line number Diff line number Diff line change
@@ -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}!`
}
}