Advertisement
Guest User

Untitled

a guest
Jul 21st, 2019
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. const urlEncode = function(text) {
  2. return text.trim().split(' ').join('%20');
  3. };
  4.  
  5. console.log(urlEncode("Lighthouse Labs"));
  6. console.log(urlEncode(" Lighthouse Labs "));
  7. console.log(urlEncode("blue is greener than purple for sure"));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement