Please help guys I need to understand the question I am not getting it

I don’t know where to begin I need explanation about finding the solution:
Describe your issue in detail here.

Your code so far


// Only change code below this line
function urlSlug(title) {


}
// Only change code above this line

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36

Challenge: Apply Functional Programming to Convert Strings to URL Slugs

Link to the challenge:

What have you tried so far? This looks like the starter code?

Is there a part of the instructions that you don’t understand?

nothing yet I want to understand what the question want me to do

Ok. Is there a specific part of the instructions that is confusing you?

One of the test cases is

urlSlug("Winter Is Coming") should return the string winter-is-coming

So you need to turn something like
"Winter Is Coming"
into something like
"winter-is-coming"

okay I get it now what I need to do

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.