Guest User

Untitled

a guest
Jun 20th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. // the global variable
  2. var globalTitle = " Winter Is Coming";
  3.  
  4. // Add your code below this line
  5. function urlSlug(title) {
  6. return title.split(' ')
  7. .filter((el) => el !== '')
  8. .join('-')
  9. .toLowerCase();
  10. }
  11. // Add your code above this line
  12.  
  13. var winterComing = urlSlug(globalTitle); // Should be "winter-is-coming"
Add Comment
Please, Sign In to add comment