megi_al

wordsUppercase

May 21st, 2021 (edited)
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. function wordsUppercase(text) {
  2. let result = text.toUpperCase()
  3. .match(/\w+/g)
  4. .join(', ');
  5.  
  6. console.log(result);
  7. }
  8.  
Add Comment
Please, Sign In to add comment