Apply Functional Programming to Convert Strings to URL 1st check

Tell us what’s happening:

I can’t get first check though when i use console.log i get the same globalTitle string. Help me, please!

Your code so far


// the global variable
var globalTitle = " Winter Is  Coming";

// Add your code below this line
function urlSlug(title) {
  let bb = title;

  return bb.toLowerCase().trim().split(/\s+/).join("-");
 
  
}
// Add your code above this line

var winterComing = urlSlug(globalTitle); // Should be "winter-is-coming"
console.log(typeof globalTitle);

Your browser information:

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

Link to the challenge:
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/functional-programming/apply-functional-programming-to-convert-strings-to-url-slugs

It looks like at some point when you were experimenting you added an extra space to globalTitle. There are two spaces between “Is” and “Coming”. In the original problem code there was only one.

Oh, my bad. Thank you!

Glad to help. Happy coding.