Advertisement
bebo231312312321

Untitled

Apr 5th, 2023
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function wordsUppercase(string){
  2.  
  3.     result = string.toUpperCase().match(/\w+/g).join(", ");
  4.     return result;
  5.  
  6. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement