Challenge: Make a Sentence
This challenge will test your skills in implementing partial functions in JavaScript.
We'll cover the following...
We'll cover the following...
Problem statement #
Study the code given below:
Observe the output and then try to understand what the sentence function is doing. Currently, on line 6 we are calling our function as follows:
sentence("and","mango","apple","peach")
Your task is to ...